feat: use proj id for history & replay

This commit is contained in:
a7m-1st 2025-10-13 01:29:03 +03:00
parent 407e6822ee
commit 6aeff827aa
7 changed files with 162 additions and 39 deletions

View file

@ -28,7 +28,9 @@ def sync_step(func):
send_to_api(
sync_url,
{
"task_id": chat.task_id,
# TODO: revert to task_id to support multi-task project replay
# "task_id": chat.task_id,
"task_id": chat.project_id,
"step": json_data["step"],
"data": json_data["data"],
},