File size: 323 Bytes
54bef2f | 1 2 3 4 5 6 7 8 9 10 11 12 | 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")
|