added tests for all methods

This commit is contained in:
Francisco Javier Arceo 2025-07-07 22:29:19 -04:00
parent 83c89265e0
commit ea6173e1b0
12 changed files with 418 additions and 424 deletions

View file

@ -18,7 +18,7 @@ from llama_stack.schema_utils import json_schema_type
@json_schema_type
class MilvusVectorIOConfig(BaseModel):
db_path: str
kvstore: KVStoreConfig
kvstore: KVStoreConfig = Field(description="Config for KV store backend (SQLite only for now)")
consistency_level: str = Field(description="The consistency level of the Milvus server", default="Strong")
@classmethod