| 83 | |
| 84 | |
| 85 | class ChatCompletionResponseChoice(BaseModel): |
| 86 | index: int |
| 87 | message: ChatMessage |
| 88 | finish_reason: Literal["stop", "length"] |
| 89 | |
| 90 | |
| 91 | class ChatCompletionResponseStreamChoice(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected