add observer cruise creation and completion (#1354)

This commit is contained in:
Shuchang Zheng
2024-12-08 12:43:59 -08:00
committed by GitHub
parent fbc6677f9e
commit bda119027e
6 changed files with 145 additions and 14 deletions

View File

@@ -515,6 +515,8 @@ class ObserverCruiseModel(Base):
organization_id = Column(String, ForeignKey("organizations.organization_id"), nullable=True)
workflow_run_id = Column(String, ForeignKey("workflow_runs.workflow_run_id"), nullable=True)
workflow_id = Column(String, ForeignKey("workflows.workflow_id"), nullable=True)
prompt = Column(UnicodeText, nullable=True)
url = Column(String, nullable=True)
class ObserverThoughtModel(Base):