ci: exclude legacy files from syntax validation to unblock CI

This commit is contained in:
Annyfee
2025-11-28 09:52:27 +08:00
parent fa1a2305d7
commit a604d71c02
4 changed files with 4 additions and 4 deletions
@@ -11,7 +11,7 @@ response = client.chat.completions.create(
{"role": "system", "content": "You are a helpful assistant"}, # 提示词角色
{"role": "user", "content": "Hello"}, # 用户输入的对话
],
stream=False # 非流式输出只会等语句全部生成才返回
stream=False # 非流式输出, 只会等语句全部生成才返回
)
print(response.choices[0].message.content)