diff options
author | Grail Finder <wohilas@gmail.com> | 2024-11-27 15:09:43 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2024-11-27 15:09:43 +0300 |
commit | 55007d27f808426128a7b2d86169e86c4cf01b57 (patch) | |
tree | 683b0e6ff99117024feedca253588c15c85f564e /models/models.go | |
parent | 7f48741b11038715f82747f1eacee14470547855 (diff) |
Fix: tool calls
Diffstat (limited to 'models/models.go')
-rw-r--r-- | models/models.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/models.go b/models/models.go index 880779f..02bec00 100644 --- a/models/models.go +++ b/models/models.go @@ -12,8 +12,8 @@ import ( // } type FuncCall struct { - Name string `json:"name"` - Args string `json:"args"` + Name string `json:"name"` + Args []string `json:"args"` } type LLMResp struct { |