feat(agent): add support for workflow agents with updated constraints and configuration

This commit is contained in:
Davidson Gomes
2025-05-06 18:37:13 -03:00
parent 64e483533d
commit 0fc47aaa57
5 changed files with 97 additions and 8 deletions

View File

@@ -81,7 +81,7 @@ class Agent(Base):
__table_args__ = (
CheckConstraint(
"type IN ('llm', 'sequential', 'parallel', 'loop', 'a2a')",
"type IN ('llm', 'sequential', 'parallel', 'loop', 'a2a', 'workflow')",
name="check_agent_type",
),
)