zac_ma

Results 48 comments of zac_ma

我测试了下我的bing是正常的,也是免费订阅的: ``` API 类型:Bing Search 定价层:免费 终结点:https://api.bing.microsoft.com/ ``` 错误信息提到 "Web Search API - v7" (这个的endpiont是```/v7.0/search```),你可能使用的是 Custom Search API 的密钥,所以估计你需要修改下endponit: ```/v7.0/custom/search``` 修改位置 ```/backend/utils/constant.ts```: ```ts export const EndPoint = { BING_SEARCH_V7_ENDPOINT: 'https://api.bing.microsoft.com/v7.0/search',...

感谢建议,下个更新版本会调整部分。 本地模型本来是单独功能,后来感觉没必要就精简了,直接像其他api服务填进去了就可以了, 但是会考虑增加标签识别为本地模型,并自动获取本地模型列表(如果服务有对应的API)。

Test, Qwen2.5 7B ![Image](https://github.com/user-attachments/assets/f17425a9-9e75-46b2-bcc8-1029a323f17f) ![Image](https://github.com/user-attachments/assets/4643329b-183f-45b5-9073-e9934d919fde)

@arsaboo choose the `Research` mode, this bug has been fixed now. ![Image](https://github.com/user-attachments/assets/9c614ed3-484a-4d55-a9c1-d108e00c0263)

@xieyos 可以的,安排中:)

可以使用onOpen获取原始Response ```ts onOpen?: (res?: Response) => void; onError?: (error: any) => void; ```