Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
Aarthi Iyer authored and Aarthi Iyer committed Dec 3, 2024
1 parent 0649844 commit cd57942
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ classifiers =
include_package_data = True
python_requires = >=3.9
install_requires =
weaviate-client>=4.5.0
weaviate-client>=4.9.5
click==8.1.7
semver>=3.0.2
numpy>=1.24.0
Expand Down
2 changes: 1 addition & 1 deletion weaviate_cli/commands/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def create() -> None:
"--vectorizer",
default=CreateCollectionDefaults.vectorizer,
type=click.Choice(
["contextionary", "transformers", "openai", "ollama", "cohere", "jinaai", "text2vec_weaviate"]
["contextionary", "transformers", "openai", "ollama", "cohere", "jinaai", "weaviate"]
),
help="Vectorizer to use.",
)
Expand Down
2 changes: 1 addition & 1 deletion weaviate_cli/managers/collection_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def create_collection(
),
"cohere": wvc.Configure.Vectorizer.text2vec_cohere(),
"jinaai": wvc.Configure.Vectorizer.text2vec_jinaai(),
"text2vec_weaviate": wvc.Configure.Vectorizer.text2vec_weaviate()
"weaviate": wvc.Configure.Vectorizer.text2vec_weaviate()
}

inverted_index_map: Dict[str, wvc.InvertedIndexConfig] = {
Expand Down

0 comments on commit cd57942

Please sign in to comment.