Query
| 56 | // Query |
| 57 | |
| 58 | type QueryOptions struct { |
| 59 | Namespace string |
| 60 | TopK int64 |
| 61 | Filter map[string]string |
| 62 | IncludeValues bool |
| 63 | IncludeMetadata bool |
| 64 | Vector []float32 |
| 65 | SparseVector *pinecone.SparseVector |
| 66 | ID string |
| 67 | } |
| 68 | |
| 69 | type QueryOutput struct { |
| 70 | Matches []pinecone.QueryMatch |
nothing calls this directly
no outgoing calls
no test coverage detected