| 120 | } |
| 121 | |
| 122 | type QueryMatch struct { |
| 123 | ID string `json:"id"` |
| 124 | Score float32 `json:"score"` |
| 125 | Values []float32 `json:"values,omitempty"` |
| 126 | SparseValues *SparseVector `json:"sparseValues,omitempty"` |
| 127 | Metadata map[string]interface{} `json:"metadata,omitempty"` |
| 128 | } |
| 129 | |
| 130 | type QueryResponse struct { |
| 131 | Matches []QueryMatch `json:"matches"` |
nothing calls this directly
no outgoing calls
no test coverage detected