Jon/backend hitl buffs (#3826)

This commit is contained in:
Jonathan Dobson
2025-10-27 14:50:17 -04:00
committed by GitHub
parent be2ceb31a8
commit 353358ee17
6 changed files with 92 additions and 14 deletions

View File

@@ -680,6 +680,11 @@ class WorkflowRunBlockModel(Base):
http_request_timeout = Column(Integer, nullable=True)
http_request_follow_redirects = Column(Boolean, nullable=True)
# human interaction block
instructions = Column(String, nullable=True)
positive_descriptor = Column(String, nullable=True)
negative_descriptor = Column(String, nullable=True)
created_at = Column(DateTime, default=datetime.datetime.utcnow, nullable=False)
modified_at = Column(DateTime, default=datetime.datetime.utcnow, onupdate=datetime.datetime.utcnow, nullable=False)