mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 18:00:36 +00:00
fix: add default to pass pydantic error
This commit is contained in:
parent
1b75792621
commit
d8849f0b95
1 changed files with 2 additions and 1 deletions
|
|
@ -24,7 +24,8 @@ class MongoDBVectorIOConfig(BaseModel):
|
|||
|
||||
# MongoDB Atlas connection details
|
||||
connection_string: str = Field(
|
||||
description="MongoDB Atlas connection string (e.g., mongodb+srv://user:pass@cluster.mongodb.net/)"
|
||||
default="",
|
||||
description="MongoDB Atlas connection string (e.g., mongodb+srv://user:pass@cluster.mongodb.net/)",
|
||||
)
|
||||
database_name: str = Field(default="llama_stack", description="Database name to use for vector collections")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue