fix: delete redundant fields in plugin output data (#469)

This commit is contained in:
lvxinyu-1117
2025-08-04 16:54:30 +08:00
committed by GitHub
parent a44b4e8f7e
commit c7bf6bbdec
8 changed files with 304 additions and 15 deletions

View File

@@ -77,8 +77,8 @@ type FunctionInfo struct {
type FunctionCallInfo struct {
FunctionInfo
CallID string `json:"-"`
Arguments string `json:"arguments"`
CallID string `json:"-"`
Arguments map[string]any `json:"arguments"`
}
type ToolResponseInfo struct {