xulh commited on
Commit
9cad8c3
·
1 Parent(s): f336632

代码初始化

Browse files
Files changed (1) hide show
  1. inference/inference.py +1 -1
inference/inference.py CHANGED
@@ -41,7 +41,7 @@ async def chat_completion(token: str = Body(...), messages: list = Body(...)):
41
 
42
  # 使用 chat API 请求生成模型的回答
43
  completion = client.chat.completions.create(
44
- model="meta-llama/Llama-3.3-70B-Instruct",
45
  messages=messages,
46
  max_tokens=500
47
  )
 
41
 
42
  # 使用 chat API 请求生成模型的回答
43
  completion = client.chat.completions.create(
44
+ model="Qwen/QwQ-32B-Preview",
45
  messages=messages,
46
  max_tokens=500
47
  )