We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, you can only specify one termination condition in AGS.
"termination_condition": { "component_type": "termination", "termination_type": "MaxMessageTermination", "max_messages": 10 }
However, AgentChat supports combinations of termination conditions
termination = termination = MaxMessageTermination(3) | TextMentionTermination("stop")
Extend AGS component factory and spec to support combinations of termination conditions
"termination_condition": { "component_type": "termination", "termination_type": "CombinationTermination", "operator": "or", "conditions": [ { "component_type": "termination", "termination_type": "TextMentionTermination", "text": "TERMINATE" }, { "component_type": "termination", "termination_type": "MaxMessageTermination", "max_messages": 1 } ] }
The text was updated successfully, but these errors were encountered:
Support termination condition combination. Closes #4325
c5345c8
victordibia
No branches or pull requests
Currently, you can only specify one termination condition in AGS.
However, AgentChat supports combinations of termination conditions
What
Extend AGS component factory and spec to support combinations of termination conditions
The text was updated successfully, but these errors were encountered: