add permanent_workflow_id to observer_cruises and observer_thoughts (#1396)

This commit is contained in:
Shuchang Zheng
2024-12-16 14:34:31 -08:00
committed by GitHub
parent e81fdf6512
commit 985f8c9428
4 changed files with 44 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ class ObserverCruise(BaseModel):
organization_id: str | None = None
workflow_run_id: str | None = None
workflow_id: str | None = None
workflow_permanent_id: str | None = None
prompt: str | None = None
url: HttpUrl | None = None
@@ -39,6 +40,7 @@ class ObserverThought(BaseModel):
workflow_run_id: str | None = None
workflow_run_block_id: str | None = None
workflow_id: str | None = None
workflow_permanent_id: str | None = None
user_input: str | None = None
observation: str | None = None
thought: str | None = None