| 31 | } |
| 32 | |
| 33 | type Function struct { |
| 34 | Url string `json:"url,omitempty"` |
| 35 | Name string `json:"name"` |
| 36 | Description string `json:"description"` |
| 37 | Parameters Parameter `json:"parameters"` |
| 38 | Arguments string `json:"arguments,omitempty"` |
| 39 | } |
| 40 | type Parameter struct { |
| 41 | Type string `json:"type"` |
| 42 | Properties map[string]Property `json:"properties"` |
nothing calls this directly
no outgoing calls
no test coverage detected