| 7 | } |
| 8 | |
| 9 | interface ModelSettings { |
| 10 | provider: string; |
| 11 | baseURL: string; |
| 12 | model: string; |
| 13 | apiKey: string; |
| 14 | temperature: number; |
| 15 | } |
| 16 | |
| 17 | export async function POST(req: NextRequest) { |
| 18 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected