| 912 | |
| 913 | |
| 914 | class BatchResponseData(BaseModel): |
| 915 | # HTTP status code of the response. |
| 916 | status_code: int = 200 |
| 917 | |
| 918 | # An unique identifier for the API request. |
| 919 | request_id: str |
| 920 | |
| 921 | # The body of the response. |
| 922 | body: Optional[ChatCompletionResponse] = None |
| 923 | |
| 924 | |
| 925 | class BatchRequestOutput(BaseModel): |
no outgoing calls