| 24 | |
| 25 | |
| 26 | class TextEmbeddingResponse(BaseModel): |
| 27 | status: str = Field("success", Literal="success", description="The response status.", examples=["success"]) |
| 28 | data: List[TextEmbeddingOutput] = Field(..., description="The text embedding response data.") |
| 29 | usage: TextEmbeddingUsage = Field(..., description="The text embedding usage data.") |
no outgoing calls
no test coverage detected