You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
306 B
11 lines
306 B
5 months ago
|
from openai import OpenAI
|
||
|
|
||
|
# 阿里云中用来调用 deepseek v3 的密钥
|
||
|
MODEL_API_KEY = "sk-01d13a39e09844038322108ecdbd1bbc"
|
||
|
MODEL_NAME = "qwen-plus"
|
||
|
|
||
|
# 初始化 OpenAI 客户端
|
||
|
client = OpenAI(
|
||
|
api_key=MODEL_API_KEY,
|
||
|
base_url="https://dashscope.aliyuncs.com/compatible-mode/v1",
|
||
|
)
|