From 4b8be55958445db0094f5ebb490d9cdb63790445 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Thu, 7 Nov 2024 17:13:04 -0800 Subject: [PATCH] Convert UUID to string when forking a conversation --- src/khoj/routers/api_chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/khoj/routers/api_chat.py b/src/khoj/routers/api_chat.py index cc69930e..8397eacd 100644 --- a/src/khoj/routers/api_chat.py +++ b/src/khoj/routers/api_chat.py @@ -374,7 +374,7 @@ def fork_public_conversation( { "status": "ok", "next_url": redirect_uri, - "conversation_id": new_conversation.id, + "conversation_id": str(new_conversation.id), } ), )