| 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") | |