mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-10 04:08:31 +00:00
fix: enable_session_persistence in AgentConfig should be optional
Signed-off-by: Yuan Tang <terrytangyuan@gmail.com>
This commit is contained in:
parent
314ee09ae3
commit
23cb49f53e
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ class AgentConfigCommon(BaseModel):
|
||||||
class AgentConfig(AgentConfigCommon):
|
class AgentConfig(AgentConfigCommon):
|
||||||
model: str
|
model: str
|
||||||
instructions: str
|
instructions: str
|
||||||
enable_session_persistence: bool
|
enable_session_persistence: Optional[bool] = False
|
||||||
response_format: Optional[ResponseFormat] = None
|
response_format: Optional[ResponseFormat] = None
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue