Spaces:
Sleeping
Sleeping
File size: 11,607 Bytes
0919d5b | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | """
Hugging Face Spaces version of the Memory Chat application.
Optimized for the HF Spaces environment with persistent storage.
"""
import os
import gradio as gr
from memory_manager import MemoryManager
from chat_interface import HuggingFaceChat
from rich.console import Console
console = Console()
class HFSpaceApp:
"""Hugging Face Spaces version of the Memory Chat application."""
def __init__(self):
"""Initialize the Spaces application."""
# Use persistent storage on HF Spaces
self.memory_dir = "/tmp/memories" if os.getenv("SPACE_ID") else "memories"
os.makedirs(self.memory_dir, exist_ok=True)
self.memory_manager = MemoryManager(self.memory_dir)
self.chat_interface = HuggingFaceChat()
# Conversation history
self.conversation_history = []
# Load existing memories
summary = self.memory_manager.get_summary()
console.print(f"[blue]Loaded {summary['total_memories']} memories[/blue]")
def should_record_memory(self, user_input: str, ai_response: str) -> bool:
"""Determine if the conversation should be recorded as a memory."""
important_keywords = [
"remember", "important", "note", "fact", "detail", "information",
"love", "hate", "like", "dislike", "favorite", "never", "always",
"birthday", "anniversary", "special", "urgent", "must", "should"
]
combined_text = f"{user_input} {ai_response}".lower()
for keyword in important_keywords:
if keyword in combined_text:
return True
personal_patterns = [
"my name is", "i live in", "i work at", "i study", "my birthday",
"my favorite", "i love", "i hate", "i like", "i dislike"
]
for pattern in personal_patterns:
if pattern in combined_text:
return True
return False
def extract_memory_content(self, user_input: str, ai_response: str) -> str:
"""Extract the most important information to store as a memory."""
if any(word in user_input.lower() for word in ["remember", "note", "save"]):
return user_input
personal_info = []
if "my name is" in user_input.lower():
personal_info.append("User shared their name")
if "i live in" in user_input.lower():
personal_info.append("User shared their location")
if "i work at" in user_input.lower():
personal_info.append("User shared their workplace")
if "i study" in user_input.lower():
personal_info.append("User shared their studies")
if "my birthday" in user_input.lower():
personal_info.append("User shared their birthday")
if "my favorite" in user_input.lower():
personal_info.append("User shared a favorite thing")
if personal_info:
return f"User mentioned: {', '.join(personal_info)}. Details: {user_input}"
return user_input
def chat_with_memory(self, user_input: str) -> str:
"""Chat with the AI while managing memories."""
if not self.chat_interface.check_model_availability():
return "I'm sorry, but I couldn't load the AI model. Please check your internet connection."
self.conversation_history.append({"role": "user", "content": user_input})
relevant_memories = self.memory_manager.retrieve_memories(user_input, k=3)
context = ""
if relevant_memories:
context = "Relevant memories:\n"
for memory in relevant_memories[:2]:
context += f"- {memory['content']}\n"
context += "\n"
prompt = self.build_prompt(user_input, context)
ai_response = self.chat_interface.generate_response(prompt)
self.conversation_history.append({"role": "assistant", "content": ai_response})
if self.should_record_memory(user_input, ai_response):
memory_content = self.extract_memory_content(user_input, ai_response)
context_info = f"During conversation at {self.get_current_time()}"
self.memory_manager.add_memory(
content=memory_content,
context=context_info,
memory_type="conversation"
)
return ai_response
def build_prompt(self, user_input: str, context: str) -> str:
"""Build the prompt for the AI model."""
prompt = f"{context}Human: {user_input}\nAI: "
return prompt
def get_current_time(self) -> str:
"""Get current time in a readable format."""
import datetime
return datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
def get_memories_summary(self) -> str:
"""Get a summary of stored memories."""
summary = self.memory_manager.get_summary()
memory_types = summary['memory_types']
summary_text = f"""
## Memory Summary
**Total Memories:** {summary['total_memories']}
**Memory Types:**
"""
for memory_type, count in memory_types.items():
summary_text += f"- {memory_type}: {count}\n"
return summary_text
def get_recent_memories(self) -> str:
"""Get the most recent memories."""
recent_memories = self.memory_manager.get_recent_memories()
if not recent_memories:
return "No memories stored yet."
memory_text = "## Recent Memories\n\n"
for memory in recent_memories:
memory_text += f"**{memory['type'].title()}** ({memory['timestamp'][:19]}):\n"
memory_text += f"{memory['content']}\n\n"
return memory_text
def clear_all_memories(self) -> str:
"""Clear all memories."""
self.memory_manager.clear_memories()
return "All memories have been cleared."
def get_model_info(self) -> str:
"""Get information about the AI model."""
info = self.chat_interface.get_model_info()
return f"""
## Model Information
**Model:** {info['model_name']}
**Device:** {info['device']}
**Available:** {'Yes' if info['available'] else 'No'}
"""
def run_gradio_interface(self):
"""Run the Gradio interface optimized for HF Spaces."""
# Custom CSS for better appearance on Spaces
css = """
.gradio-container {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.gr-prose h1 {
text-align: center;
color: #1f2937;
}
.gr-prose h2 {
color: #374151;
}
"""
with gr.Blocks(title="Memory Chat - Hugging Face Spaces", css=css, theme=gr.themes.Soft()) as demo:
gr.Markdown("# π€ Memory Chat with Hugging Face")
gr.Markdown("### Chat with an AI that remembers important details about you!")
with gr.Tab("π¬ Chat"):
chatbot = gr.Chatbot(height=500)
with gr.Row():
msg = gr.Textbox(
label="Your Message",
placeholder="Type your message here...",
scale=4
)
submit_btn = gr.Button("Send", scale=1)
with gr.Row():
clear_btn = gr.Button("Clear Conversation")
clear_memories_btn = gr.Button("Clear All Memories", variant="stop")
# Submit on Enter key
msg.submit(
fn=self.user,
inputs=[msg, chatbot],
outputs=[msg, chatbot],
queue=False
)
submit_btn.click(
fn=self.user,
inputs=[msg, chatbot],
outputs=[msg, chatbot],
queue=False
)
clear_btn.click(
fn=self.clear_history,
inputs=None,
outputs=chatbot,
queue=False
)
clear_memories_btn.click(
fn=lambda: (self.clear_all_memories(), None),
inputs=None,
outputs=[gr.Textbox(), chatbot],
queue=False
)
with gr.Tab("π Memories"):
memories_summary = gr.Markdown(value=self.get_memories_summary())
recent_memories = gr.Markdown(value=self.get_recent_memories())
with gr.Row():
refresh_btn = gr.Button("Refresh Memories")
timeline_link = gr.Markdown(f"[View Timeline]({self.memory_manager.timeline_file})")
refresh_btn.click(
fn=lambda: (self.get_memories_summary(), self.get_recent_memories()),
inputs=None,
outputs=[memories_summary, recent_memories],
queue=False
)
with gr.Tab("π€ Model Info"):
model_info = gr.Markdown(value=self.get_model_info())
with gr.Tab("βΉοΈ About"):
gr.Markdown("""
## About This Application
This application combines Hugging Face AI models with a memory system that records important information from your conversations.
### Features:
- π€ Chat with Hugging Face models
- πΎ Automatic memory recording
- π View and manage your memories
- π Search through your memories
### How it works:
1. Have a conversation with the AI
2. The system automatically detects important information
3. Important memories are stored and can be recalled in future conversations
4. View your memory timeline and statistics
### Memory Types:
- **General**: General information and facts
- **Conversation**: Important details from chats
- **Preferences**: Likes, dislikes, favorites
- **Important**: Critical information marked as important
---
**Note**: Memories are stored locally and persist between sessions on this Space.
""")
return demo
def user(self, user_message, history):
"""Handle user input and generate AI response."""
if not user_message.strip():
return "", history
ai_response = self.chat_with_memory(user_message)
if history is None:
history = []
history.append({"role": "user", "content": user_message})
history.append({"role": "assistant", "content": ai_response})
return "", history
def clear_history(self):
"""Clear conversation history."""
self.conversation_history = []
return None
def clear_all_memories(self) -> str:
"""Clear all memories."""
self.memory_manager.clear_memories()
return "All memories have been cleared."
def main():
"""Main entry point for HF Spaces."""
console.print("[green]π Starting Memory Chat Application for HF Spaces...[/green]")
# Create and run the application
app = HFSpaceApp()
# Run Gradio interface optimized for Spaces
demo = app.run_gradio_interface()
demo.launch(
server_name="0.0.0.0",
server_port=int(os.environ.get("PORT", 7860)),
debug=False,
show_error=True
)
if __name__ == "__main__":
main() |