| 26 | } |
| 27 | |
| 28 | type Embedding struct { |
| 29 | Object string `json:"object"` |
| 30 | Embedding []float64 `json:"embedding"` |
| 31 | Index int `json:"index"` |
| 32 | } |
| 33 | |
| 34 | // SendEmbeddings returns an EmbeddingResponse |
| 35 | func SendEmbeddings(request EmbeddingRequest) (embeddingResponse EmbeddingResponse, err error) { |
nothing calls this directly
no outgoing calls
no test coverage detected