add idle time
This commit is contained in:
parent
48603de0a3
commit
d7f41bfe17
1 changed files with 1 additions and 0 deletions
|
|
@ -17,6 +17,7 @@ class AgentType(str, Enum):
|
||||||
class AgentConfig(TypedModel, type=AgentType.BASE):
|
class AgentConfig(TypedModel, type=AgentType.BASE):
|
||||||
initial_message: Optional[str] = None
|
initial_message: Optional[str] = None
|
||||||
generate_responses: bool = True
|
generate_responses: bool = True
|
||||||
|
allowed_idle_time_seconds: Optional[float] = None
|
||||||
|
|
||||||
class LLMAgentConfig(AgentConfig, type=AgentType.LLM):
|
class LLMAgentConfig(AgentConfig, type=AgentType.LLM):
|
||||||
prompt_preamble: str
|
prompt_preamble: str
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue