(model: string)
| 120 | } |
| 121 | |
| 122 | function extractShortModelName(model: string): string { |
| 123 | return model.startsWith('openai/') ? model.slice('openai/'.length) : model |
| 124 | } |
| 125 | |
| 126 | function buildOpenAIBody( |
| 127 | body: ChatCompletionRequestBody, |
no outgoing calls
no test coverage detected