Gemini content block.
| 286 | |
| 287 | |
| 288 | class GeminiContent(BaseModel): |
| 289 | """Gemini content block.""" |
| 290 | |
| 291 | role: Optional[Literal["user", "model"]] = None |
| 292 | parts: List[GeminiPart] |
| 293 | |
| 294 | |
| 295 | class GeminiGenerateContentRequest(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected