Description
The Weaviate core now supports the HNSWGeoIndexEF parameter (added in v1.31) which controls the search depth for geo-based queries. This parameter is currently available via environment variable (HNSW_GEO_INDEX_EF) and direct API calls, but is not yet exposed in the client library.
Core Implementation
Current Behavior
Users cannot configure HNSWGeoIndexEF through the client library and will get errors if they try to set it.

Expected Behavior
Users should be able to configure HNSWGeoIndexEF when:
- Creating a new collection with HNSW vector index
- Updating an existing collection's HNSW configuration
References