From 5fe2d87d70973dfb47772bb195b86b530b30979e Mon Sep 17 00:00:00 2001 From: rt6yr <150139361+rt6yr@users.noreply.github.com> Date: Fri, 31 Oct 2025 14:03:03 +0530 Subject: [PATCH] Add uuid to response in main.py also show uuid of the conversation / session --- src/meta_ai_api/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meta_ai_api/main.py b/src/meta_ai_api/main.py index 75191c0..0dbe87e 100644 --- a/src/meta_ai_api/main.py +++ b/src/meta_ai_api/main.py @@ -267,7 +267,7 @@ def extract_data(self, json_line: dict): fetch_id = bot_response_message.get("fetch_id") sources = self.fetch_sources(fetch_id) if fetch_id else [] medias = self.extract_media(bot_response_message) - return {"message": response, "sources": sources, "media": medias} + return {"message": response, "sources": sources, "media": medias,"uuid":self.external_conversation_id} @staticmethod def extract_media(json_line: dict) -> List[Dict]: