| 10 | |
| 11 | // Chat Completion Request |
| 12 | export interface ChatCompletionRequest { |
| 13 | model: string; |
| 14 | messages: Message[]; |
| 15 | temperature?: number; |
| 16 | max_output_tokens?: number; |
| 17 | top_p?: number; |
| 18 | stop?: string[]; |
| 19 | reasoning_effort?: ThinkingLevel | number; |
| 20 | tools?: Tool[]; |
| 21 | stream?: boolean; |
| 22 | } |
| 23 | |
| 24 | // Thinking Levels (Gemini 3 Flash supports all 4, Pro supports low/high) |
| 25 | export type ThinkingLevel = "minimal" | "low" | "medium" | "high"; |
nothing calls this directly
no outgoing calls
no test coverage detected