(chatId: string, messageId: number, username?: string)
| 392 | return content.trim(); |
| 393 | } |
| 394 | |
| 395 | async function callResponses( |
| 396 | apiKey: string, |
| 397 | baseUrl: string, |
| 398 | model: string, |
| 399 | input: string, |
| 400 | timeout: number, |
| 401 | ): Promise<string> { |
| 402 | const response = await axios.post( |
| 403 | `${normalizedBaseUrl(baseUrl)}/v1/responses`, |
| 404 | { |
no outgoing calls
no test coverage detected