EmbeddingResponse is the response from a Create embeddings request.
| 19 | |
| 20 | // EmbeddingResponse is the response from a Create embeddings request. |
| 21 | type EmbeddingResponse struct { |
| 22 | Object string `json:"object"` |
| 23 | Data []Embedding `json:"data"` |
| 24 | Model string `json:"model"` |
| 25 | Usage Usage `json:"usage"` |
| 26 | } |
| 27 | |
| 28 | type Embedding struct { |
| 29 | Object string `json:"object"` |
nothing calls this directly
no outgoing calls
no test coverage detected