-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup_memory_system.sh
More file actions
36 lines (33 loc) · 1.15 KB
/
Copy pathsetup_memory_system.sh
File metadata and controls
36 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
# Memory system setup and UI launcher
echo "🧠 NOVA AI - Memory System Setup"
echo "=================================="
# Check if streamlit is installed
if ! python -m pip show streamlit > /dev/null 2>&1; then
echo "📦 Installing Streamlit..."
python -m pip install streamlit pandas
fi
echo ""
echo "✅ Memory system is ready!"
echo ""
echo "Available commands:"
echo " 1. Start Memory Dashboard UI:"
echo " streamlit run memory_ui.py"
echo ""
echo " 2. Access memory via AI tools in nova.py:"
echo " - save_short_term_memory(content, tags)"
echo " - save_long_term_memory(content, tags, importance)"
echo " - save_quick_note(content, tags)"
echo " - fetch_all_memories()"
echo " - search_memories(query)"
echo " - update_memory(memory_id, ...)"
echo " - delete_memory(memory_id)"
echo ""
echo "📊 Memory system features:"
echo " - Short-term: Session-specific, 1-7 days"
echo " - Long-term: Persistent, indefinite"
echo " - Quick Notes: Reminders, 1-3 days"
echo " - Full-text search support"
echo " - Importance levels (1-5) for long-term"
echo " - Tag organization"
echo " - SQLite backend (memories.db)"