Skip to content

Commit

Permalink
fix: milvus store type error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aries-ckt committed Aug 13, 2024
1 parent 2700a68 commit 2346d02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbgpt/storage/vector_store/milvus_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class MilvusVectorConfig(VectorStoreConfig):

model_config = ConfigDict(arbitrary_types_allowed=True)

uri: str = Field(
uri: Optional[str] = Field(
default=None,
description="The uri of milvus store, if not set, will use the default uri.",
)
Expand Down

0 comments on commit 2346d02

Please sign in to comment.