跳至主要內容

Xiaomi MiMo

https://platform.xiaomimimo.com/#/docs

提示

我們支援所有 Xiaomi MiMo 模型,只要在傳送 litellm 請求時將 model=xiaomi_mimo/<any-model-on-xiaomi-mimo> 設為前綴即可

API 金鑰

# env variable
os.environ['XIAOMI_MIMO_API_KEY']

範例用法

from litellm import completion
import os

os.environ['XIAOMI_MIMO_API_KEY'] = ""
response = completion(
model="xiaomi_mimo/mimo-v2-flash",
messages=[
{
"role": "user",
"content": "What's the weather like in Boston today in Fahrenheit?",
}
],
max_tokens=1024,
temperature=0.3,
top_p=0.95,
)
print(response)

範例用法 - 串流

from litellm import completion
import os

os.environ['XIAOMI_MIMO_API_KEY'] = ""
response = completion(
model="xiaomi_mimo/mimo-v2-flash",
messages=[
{
"role": "user",
"content": "What's the weather like in Boston today in Fahrenheit?",
}
],
stream=True,
max_tokens=1024,
temperature=0.3,
top_p=0.95,
)

for chunk in response:
print(chunk)

與 LiteLLM Proxy Server 一起使用

以下說明如何使用 LiteLLM Proxy Server 呼叫 Xiaomi MiMo 模型

  1. 修改 config.yaml
model_list:
- model_name: my-model
litellm_params:
model: xiaomi_mimo/<your-model-name> # add xiaomi_mimo/ prefix to route as Xiaomi MiMo provider
api_key: api-key # api key to send your model
  1. 啟動 proxy
$ litellm --config /path/to/config.yaml
  1. 向 LiteLLM Proxy Server 發送請求
import openai
client = openai.OpenAI(
api_key="sk-1234", # pass litellm proxy key, if you're using virtual keys
base_url="http://0.0.0.0:4000" # litellm-proxy-base url
)

response = client.chat.completions.create(
model="my-model",
messages = [
{
"role": "user",
"content": "what llm are you"
}
],
)

print(response)

支援的模型

模型名稱用法
mimo-v2-flashcompletion(model="xiaomi_mimo/mimo-v2-flash", messages)
🚅
LiteLLM Enterprise
為正式環境打造的 SSO/SAML、稽核記錄、支出追蹤、多團隊管理與防護欄。
深入瞭解 →