From 59fcfb0467958167858199c139cd9ba4fe3f8129 Mon Sep 17 00:00:00 2001 From: Mohammad Amin Date: Mon, 16 Jun 2025 12:40:29 +0330 Subject: [PATCH 1/2] feat: Added workflow_id to hivemind query payload! This is used to persist the workflow id in the database. and able to track the workflow status. --- tc_temporal_backend/schema/hivemind.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tc_temporal_backend/schema/hivemind.py b/tc_temporal_backend/schema/hivemind.py index 2a86be0..7b1bc39 100644 --- a/tc_temporal_backend/schema/hivemind.py +++ b/tc_temporal_backend/schema/hivemind.py @@ -17,3 +17,7 @@ class HivemindQueryPayload(BaseModel): default="", description="the chat id to use for answering", ) + workflow_id: str = Field( + default=None, + description="the workflow id to use for answering", + ) From 308cc8213c78b7325e3e10c631007b6f9e9be01d Mon Sep 17 00:00:00 2001 From: Mohammad Amin Date: Mon, 16 Jun 2025 12:41:24 +0330 Subject: [PATCH 2/2] feat: bump lib version! --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2e25995..28703e5 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="tc-temporal-backend", - version="1.1.2", + version="1.1.3", author="Mohammad Amin Dadgar, TogetherCrew", maintainer="Mohammad Amin Dadgar", maintainer_email="dadgaramin96@gmail.com",