ActualToolCall represents the actual function call made by the model
| 51 | |
| 52 | // ActualToolCall represents the actual function call made by the model |
| 53 | type ActualToolCall struct { |
| 54 | Name string `json:"name"` |
| 55 | Arguments map[string]interface{} `json:"arguments"` |
| 56 | } |
| 57 | |
| 58 | // ChatCompletionRequest represents the request sent to OpenAI |
| 59 | type ChatCompletionRequest struct { |
nothing calls this directly
no outgoing calls
no test coverage detected