| 195 | } |
| 196 | |
| 197 | type FetchVector struct { |
| 198 | ID string `json:"id"` |
| 199 | Values []float32 `json:"values,omitempty"` |
| 200 | SparseValues *SparseVector `json:"sparseValues,omitempty"` |
| 201 | Metadata map[string]interface{} `json:"metadata,omitempty"` |
| 202 | } |
| 203 | |
| 204 | type FetchResponse struct { |
| 205 | Vectors map[string]FetchVector `json:"vectors"` |
nothing calls this directly
no outgoing calls
no test coverage detected