mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-02 08:44:44 +00:00
Updated acc to review comments
This commit is contained in:
parent
67db749d15
commit
77eaffea59
1 changed files with 2 additions and 3 deletions
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from pydantic import BaseModel
|
from pydantic import BaseModel, ConfigDict
|
||||||
|
|
||||||
from llama_stack.schema_utils import json_schema_type
|
from llama_stack.schema_utils import json_schema_type
|
||||||
|
|
||||||
|
@ -17,8 +17,7 @@ class MilvusVectorIOConfig(BaseModel):
|
||||||
token: str | None = None
|
token: str | None = None
|
||||||
consistency_level: str = "Strong"
|
consistency_level: str = "Strong"
|
||||||
|
|
||||||
class Config:
|
model_config = ConfigDict(extra='allow')
|
||||||
extra = "allow"
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue