| 113 | |
| 114 | |
| 115 | class OpenAIChatCompletionStreamResponse(BaseModel): |
| 116 | id: str |
| 117 | object: str = "chat.completion.chunk" |
| 118 | created: int |
| 119 | model: str |
| 120 | choices: List[OpenAIChatCompletionStreamChoice] |
| 121 | system_fingerprint: Optional[str] = None |
| 122 | |
| 123 | |
| 124 | # Gemini Models |
nothing calls this directly
no outgoing calls
no test coverage detected