| 90 | |
| 91 | |
| 92 | class OpenAIChatCompletionResponse(BaseModel): |
| 93 | id: str |
| 94 | object: str = "chat.completion" |
| 95 | created: int |
| 96 | model: str |
| 97 | choices: List[OpenAIChatCompletionChoice] |
| 98 | usage: Optional[Dict[str, Any]] = None |
| 99 | system_fingerprint: Optional[str] = None |
| 100 | |
| 101 | |
| 102 | class OpenAIDelta(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected