| 39 | Function FunctionDef `json:"function"` |
| 40 | } |
| 41 | |
| 42 | type FunctionDef struct { |
| 43 | Name string `json:"name"` |
| 44 | Description string `json:"description"` |
| 45 | Parameters map[string]any `json:"parameters"` |
| 46 | } |
| 47 | |
| 48 | // wireMessage is the outbound OpenAI request shape; responses parse via streamChunk. |
nothing calls this directly
no outgoing calls
no test coverage detected