link actions to their screenshots - backend (#4404)

This commit is contained in:
Celal Zamanoglu
2026-01-07 02:12:22 +03:00
committed by GitHub
parent 2f6fd5262b
commit 058a9178aa
7 changed files with 79 additions and 12 deletions

View File

@@ -680,6 +680,7 @@ class ActionModel(Base):
action_json = Column(JSON, nullable=True)
input_or_select_context = Column(JSON, nullable=True)
confidence_float = Column(Numeric, nullable=True)
screenshot_artifact_id = 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)