Implement support for binary vectors in the Vector Search Scala API to align with the Java API and leverage the new BSON Vector sub-type.
Background: In the Java API, binary vector search has been successfully integrated. However, attempting to mirror this functionality in Scala has introduced a type inference problem when overloading the vectorSearch method. The Scala compiler struggles with automatic conversion from a Scala List of doubles to a Java List, causing compilation errors in tests.
- related to
-
JAVA-5650 Implement Binary Vector support in Vector Search API
- Closed