Together
TogetherLLM #
Bases: OpenAILike
Together LLM.
例子
pip install llama-index-llms-together
from llama_index.llms.together import TogetherLLM
# 在环境变量或llm中设置api密钥
# import os
# os.environ["TOGETHER_API_KEY"] = "your api key"
llm = TogetherLLM(
model="mistralai/Mixtral-8x7B-Instruct-v0.1", api_key="your_api_key"
)
resp = llm.complete("Who is Paul Graham?")
print(resp)
Source code in llama_index/llms/together/base.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
|
class_name
classmethod
#
class_name() -> str
获取类名。
Source code in llama_index/llms/together/base.py
45 46 47 48 |
|