Add "done" back in for prompts, remove argument from ListAgents tool def

This commit is contained in:
Laine
2025-03-12 09:01:31 -04:00
parent 56cccd660d
commit fdf5550ea3
3 changed files with 4 additions and 10 deletions

View File

@@ -17,7 +17,7 @@ class CombinedInput:
Message = Dict[str, Union[str, Dict[str, Any]]]
ConversationHistory = Dict[str, List[Message]]
NextStep = Literal["confirm", "question", "done"]
NextStep = Literal["confirm", "question", "pick-new-goal", "done"]
@dataclass