GUI-configurable agent settings + hide paused agents

This commit is contained in:
2026-04-13 01:48:56 +00:00
parent 1dcfc9f46e
commit b299ea701a
4 changed files with 237 additions and 164 deletions
+1
View File
@@ -12,6 +12,7 @@ class Agent(Base):
description = Column(Text, default="")
schedule = Column(String, default="manual")
status = Column(String, default="active")
config = Column(JSON, default=dict)
created_at = Column(DateTime, default=lambda: datetime.now(timezone.utc))
runs = relationship("Run", back_populates="agent", order_by="Run.started_at.desc()")