Skip to content

Commit

Permalink
Update faq.md (#3269)
Browse files Browse the repository at this point in the history
  • Loading branch information
c121914yu authored Nov 28, 2024
1 parent 78f52a7 commit 93e302b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docSite/content/zh-cn/docs/development/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,11 @@ OneAPI 的 API Key 配置错误,需要修改`OPENAI_API_KEY`环境变量,并

4.8.10 版本新增了错误日志,报错时,会在日志中打印出实际发送的 Body 参数,可以复制该参数后,通过 curl 向 oneapi 发起请求测试。

由于 oneapi 在 stream 模式下,无法正确捕获错误,可以设置成 `stream=false` 后进行测试。
由于 oneapi 在 stream 模式下,无法正确捕获错误,可以设置成 `stream=false` 后进行测试。可能的问题:

1. 国内模型命中风控
2. 不支持的模型参数:只保留 messages 和必要参数来测试,删除其他参数测试。
3. 参数不符合模型要求:例如有的模型 temperature 不支持 0,有些不支持两位小数。max_tokens 超出,上下文超长等。

### 如何测试模型是否支持工具调用

Expand Down Expand Up @@ -265,4 +269,4 @@ curl --location --request POST 'https://oneapi.xxxx/v1/chat/completions' \
],
"tool_choice": "auto"
}'
```
```

0 comments on commit 93e302b

Please sign in to comment.