| 181 | * A function in the conversation. |
| 182 | */ |
| 183 | export interface LlmFunction { |
| 184 | /** The name of the function. */ |
| 185 | name: string; |
| 186 | /** A description of the function. */ |
| 187 | description?: string; |
| 188 | /** The parameters for the function. */ |
| 189 | parameters?: JsonSchema; |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * A JSON schema. |
nothing calls this directly
no outgoing calls
no test coverage detected