@@ -371,7 +371,7 @@ type DistanceMeasure int32
371
371
372
372
const (
373
373
// DistanceMeasureEuclidean is used to measures the Euclidean distance between the vectors. See
374
- // [Euclidean] to learn more
374
+ // [Euclidean] to learn more.
375
375
//
376
376
// [Euclidean]: https://en.wikipedia.org/wiki/Euclidean_distance
377
377
DistanceMeasureEuclidean DistanceMeasure = DistanceMeasure (pb .StructuredQuery_FindNearest_EUCLIDEAN )
@@ -393,33 +393,39 @@ const (
393
393
)
394
394
395
395
// FindNearestOptions are options for a FindNearest vector query.
396
+ // At present, there are no options.
396
397
type FindNearestOptions struct {
397
398
}
398
399
399
- // VectorQuery represents a vector query
400
+ // VectorQuery represents a query that uses [Query.FindNearest] or [Query.FindNearestPath].
400
401
type VectorQuery struct {
401
402
q Query
402
403
}
403
404
404
- // FindNearest returns a query that can perform vector distance (similarity) search with given parameters .
405
+ // FindNearest returns a query that can perform vector distance (similarity) search.
405
406
//
406
- // The returned query, when executed, performs a distance (similarity) search on the specified
407
+ // The returned query, when executed, performs a distance search on the specified
407
408
// vectorField against the given queryVector and returns the top documents that are closest
408
- // to the queryVector; .
409
+ // to the queryVector according to measure. At most limit documents are returned .
409
410
//
410
- // Only documents whose vectorField field is a Vector of the same dimension as queryVector
411
- // participate in the query, all other documents are ignored.
411
+ // Only documents whose vectorField field is a Vector32 or Vector64 of the same dimension
412
+ // as queryVector participate in the query; all other documents are ignored.
413
+ // In particular, fields of type []float32 or []float64 are ignored.
412
414
//
413
415
// The vectorField argument can be a single field or a dot-separated sequence of
414
416
// fields, and must not contain any of the runes "˜*/[]".
417
+ //
418
+ // The queryVector argument can be any of the following types:
419
+ // - []float32
420
+ // - []float64
421
+ // - Vector32
422
+ // - Vector64
415
423
func (q Query ) FindNearest (vectorField string , queryVector any , limit int , measure DistanceMeasure , options * FindNearestOptions ) VectorQuery {
416
424
// Validate field path
417
425
fieldPath , err := parseDotSeparatedString (vectorField )
418
426
if err != nil {
419
427
q .err = err
420
- return VectorQuery {
421
- q : q ,
422
- }
428
+ return VectorQuery {q : q }
423
429
}
424
430
return q .FindNearestPath (fieldPath , queryVector , limit , measure , options )
425
431
}
@@ -429,11 +435,9 @@ func (vq VectorQuery) Documents(ctx context.Context) *DocumentIterator {
429
435
return vq .q .Documents (ctx )
430
436
}
431
437
432
- // FindNearestPath is similar to FindNearest but it accepts a [FieldPath].
438
+ // FindNearestPath is like [Query. FindNearest] but it accepts a [FieldPath].
433
439
func (q Query ) FindNearestPath (vectorFieldPath FieldPath , queryVector any , limit int , measure DistanceMeasure , options * FindNearestOptions ) VectorQuery {
434
- vq := VectorQuery {
435
- q : q ,
436
- }
440
+ vq := VectorQuery {q : q }
437
441
438
442
// Convert field path to field reference
439
443
vectorFieldRef , err := fref (vectorFieldPath )
0 commit comments