Skip to content

Commit 2c55466

Browse files
authored
Merge pull request #142 from Dooders/agent-farm-converter
Update agent_import and memory_config to refine agent retrieval and e…
2 parents bd69e74 + 1d6b667 commit 2c55466

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

converter/agent_import.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import logging
66
from dataclasses import dataclass
7-
from typing import Any, Dict, List, Optional
7+
from typing import Any, Dict, List
88

99
from .config import ConverterConfig
1010
from .db import DatabaseManager
@@ -66,7 +66,7 @@ def import_agents(self) -> List[AgentMetadata]:
6666
except Exception as e:
6767
self._handle_import_error(e, agent)
6868

69-
return agents
69+
return agents[0:1] #! TODO: Remove this
7070

7171
def _get_agent_query(self, session):
7272
"""Get the appropriate agent query based on import mode."""

memory/config/memory_config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ def __init__(self, **kwargs):
9898
self.memory_priority_decay = 0.95
9999
self.enable_memory_hooks = True # Default to enabled
100100
self.logging_level = "INFO" # Default logging level
101+
self.use_embedding_engine = True
101102

102103
# Create config objects for each tier with default settings
103104
self.stm_config = RedisSTMConfig()

0 commit comments

Comments
 (0)