KLypse / test_db.py
DEVJHAWAR11
Deploy Klypse backend
54bef2f
raw
history blame contribute delete
323 Bytes
from app.database.db import save_conversation, get_conversation_history, clear_session
# Save a conversation
save_conversation("session1", "video123", "What is this video?", "It's a music video.")
# Retrieve history
history = get_conversation_history("session1")
print(history)
# Clear session
clear_session("session1")