mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-08 13:00:52 +00:00
models api configure prompts
This commit is contained in:
parent
e2c7a3cea9
commit
4647cc3e08
2 changed files with 75 additions and 3 deletions
|
@ -21,4 +21,7 @@ class ModelConfigProviderEntry(GenericProviderConfig):
|
|||
|
||||
@json_schema_type
|
||||
class BuiltinImplConfig(BaseModel):
|
||||
models_config: List[ModelConfigProviderEntry]
|
||||
models_config: List[ModelConfigProviderEntry] = Field(
|
||||
default_factory=list,
|
||||
description="list of model config entries for each model",
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue