跳至主要內容

Anyscale

https://app.endpoints.anyscale.com/

API 金鑰

# env variable
os.environ['ANYSCALE_API_KEY']

範例用法

from litellm import completion
import os

os.environ['ANYSCALE_API_KEY'] = ""
response = completion(
model="anyscale/mistralai/Mistral-7B-Instruct-v0.1",
messages=messages
)
print(response)

範例用法 - 串流

from litellm import completion
import os

os.environ['ANYSCALE_API_KEY'] = ""
response = completion(
model="anyscale/mistralai/Mistral-7B-Instruct-v0.1",
messages=messages,
stream=True
)

for chunk in response:
print(chunk)

支援的模型

此處列出的所有模型 https://app.endpoints.anyscale.com/ 都受到支援。我們持續維護模型清單、定價、token 視窗等資訊。此處

模型名稱函式呼叫
llama2-7b-chatcompletion(model="anyscale/meta-llama/Llama-2-7b-chat-hf", messages)
llama-2-13b-chatcompletion(model="anyscale/meta-llama/Llama-2-13b-chat-hf", messages)
llama-2-70b-chatcompletion(model="anyscale/meta-llama/Llama-2-70b-chat-hf", messages)
mistral-7b-instructcompletion(model="anyscale/mistralai/Mistral-7B-Instruct-v0.1", messages)
CodeLlama-34b-Instructcompletion(model="anyscale/codellama/CodeLlama-34b-Instruct-hf", messages)
🚅
LiteLLM Enterprise
為正式環境打造的 SSO/SAML、稽核記錄、支出追蹤、多團隊管理與防護欄。
深入瞭解 →