Replies: 3 comments 4 replies
|
I reproduced this issue with The first streamed {"index":0,"id":"call_...","function":{"name":"bash","arguments":""}}Continuation deltas then repeat This also explains the follow-on session corruption: a persisted I prepared a minimal fix that retains the last non-empty tool-call Verification completed:
The fork commit is ready to cherry-pick if useful. |
|
- if (call.id !== void 0) block.callId = call.id;
- if (call.function?.name !== void 0) block.name = call.function.name;
+ if (typeof call.id === "string" && call.id.length > 0) block.callId = call.id;
+ if (typeof call.function?.name === "string" && call.function.name.length > 0) block.name = call.function.name;新会话调用 codex 这样修复的 |
|
如果是使用opencode go的订阅,可以暂时使用其他的模型。 |
Uh oh!
There was an error while loading. Please reload this page.
All reactions