Skip to content

Commit

Permalink
Merge pull request #1386 from weaviate/add_missing_interface
Browse files Browse the repository at this point in the history
Add missing options to sync interface
  • Loading branch information
dirkkul authored Nov 4, 2024
2 parents 00e2387 + 31f4d34 commit 82bdfb7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions weaviate/collections/config/sync.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ from weaviate.collections.classes.config import (
ShardTypes,
_NamedVectorConfigUpdate,
_MultiTenancyConfigUpdate,
_GenerativeProvider,
_RerankerProvider,
)

from weaviate.collections.classes.config_vector_index import _VectorIndexConfigDynamicUpdate

from weaviate.collections.config.config import _ConfigCollectionBase

class _ConfigCollection(_ConfigCollectionBase):
Expand Down Expand Up @@ -48,6 +48,8 @@ class _ConfigCollection(_ConfigCollectionBase):
List[_NamedVectorConfigUpdate],
]
] = None,
generative_config: Optional[_GenerativeProvider] = None,
reranker_config: Optional[_RerankerProvider] = None,
) -> None: ...
def get_shards(self) -> List[ShardStatus]: ...
def update_shards(
Expand Down

0 comments on commit 82bdfb7

Please sign in to comment.