agent-zero-ai / python /api /chat_export.py
Tsitsi19's picture
Upload folder using huggingface_hub
8d1819a verified
from python.helpers.api import ApiHandler, Input, Output, Request, Response
from python.helpers import persist_chat
class ExportChat(ApiHandler):
async def process(self, input: Input, request: Request) -> Output:
ctxid = input.get("ctxid", "")
if not ctxid:
raise Exception("No context id provided")
context = self.use_context(ctxid)
content = persist_chat.export_json_chat(context)
return {
"message": "Chats exported.",
"ctxid": context.id,
"content": content,
}