(message: string)
| 256 | * lands here. |
| 257 | */ |
| 258 | export const invalidRequest = (message: string) => |
| 259 | new LLMError({ |
| 260 | module: "ProviderShared", |
| 261 | method: "request", |
| 262 | reason: new InvalidRequestReason({ message }), |
| 263 | }) |
| 264 | |
| 265 | export const matchToolChoice = <Auto, None, Required, Tool>( |
| 266 | route: string, |
no outgoing calls
no test coverage detected