WangCaicai
WangCaicai
How to turn off the function of sliding the mouse to turn pages? Is it possible to add a setting item, use the touchpad to slide down in the mac,...
### PR Checklist - [x] Read the [Contributing documentation](https://github.com/tmc/langchaingo/blob/main/CONTRIBUTING.md). - [x] Read the [Code of conduct documentation](https://github.com/tmc/langchaingo/blob/main/CODE_OF_CONDUCT.md). - [x] Name your Pull Request title clearly, concisely, and prefixed with the...
StreamingReasoningFunc或者StreamingFunc中期望返回原始的Choices信息,主要考虑到在遇到一些特定代码的时候,给前端返回不用的错误代码。而不是仅暴露内容出去。 比如我想在遇到content_filter的时候,返回给前端特定的错误代码。这样的话,就可以更方便。 此处我为了避免影响原来的方案,实现了StreamedChatResponsePayloadFunc,这样更加灵活一些,也兼容代码的原有逻辑。 实现方案: llms/openai/internal/openaiclient/chat.go ``` type ChatRequest struct { // ... existing fields ... // StreamingFunc is a function to be called for each chunk of a streaming response....