The per-line object of the batch output and error files
| 923 | |
| 924 | |
| 925 | class BatchRequestOutput(BaseModel): |
| 926 | """ |
| 927 | The per-line object of the batch output and error files |
| 928 | """ |
| 929 | |
| 930 | id: str |
| 931 | |
| 932 | # A developer-provided per-request id that will be used to match outputs to |
| 933 | # inputs. |
| 934 | custom_id: str |
| 935 | |
| 936 | response: Optional[BatchResponseData] |
| 937 | |
| 938 | # For requests that failed with a non-HTTP error, this will contain more |
| 939 | # information on the cause of the failure. |
| 940 | error: Optional[Any] |
| 941 | |
| 942 | |
| 943 | class EmbeddingCompletionRequest(BaseModel): |
no outgoing calls