agents.memory_v2.simple_memory_agent_deepseekยถ
SimpleMemoryAgent that works with DeepSeek - avoiding broken imports.
This is a working version of SimpleMemoryAgent that: 1. Uses DeepSeek LLM configuration 2. Avoids the broken kg_map_merge imports 3. Implements core memory functionality
Classesยถ
Memory-enhanced SimpleAgent that works with DeepSeek. |
Functionsยถ
Test the agent with DeepSeek configuration. |
Module Contentsยถ
- class agents.memory_v2.simple_memory_agent_deepseek.SimpleMemoryAgentDeepSeek(name='memory_agent', engine=None, user_id='default_user', max_memories=100, **kwargs)ยถ
Bases:
haive.agents.simple.agent.SimpleAgent
Memory-enhanced SimpleAgent that works with DeepSeek.
This agent provides: - Memory storage and retrieval - Token-aware memory management - Conversation context preservation - Works with DeepSeek LLM
Initialize the memory agent.
- Parameters:
- async arun(user_input, **kwargs)ยถ
Process user input with memory awareness.
- async agents.memory_v2.simple_memory_agent_deepseek.test_with_deepseek()ยถ
Test the agent with DeepSeek configuration.