diff --git a/llama_stack/providers/remote/vector_io/mongodb/config.py b/llama_stack/providers/remote/vector_io/mongodb/config.py index c90ac0ff1..07f3d66eb 100644 --- a/llama_stack/providers/remote/vector_io/mongodb/config.py +++ b/llama_stack/providers/remote/vector_io/mongodb/config.py @@ -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")