-
Notifications
You must be signed in to change notification settings - Fork 313
Open
Description
使用python以及其它工具是可以正常调用的:
from openai import OpenAI
client = OpenAI(
api_key="Xxxx",
base_url="https://zhenze-huhehaote.cmecloud.cn/v1"
)
response = client.chat.completions.create(
model="DeepSeek-V3.1",
messages=[{"role": "user", "content": "你是谁"}],
stream=True
)
for chunk in response:
print(chunk.choices[0].delta.content or "", end="")
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
