update changelog

This commit is contained in:
Dev-Khant
2025-04-28 20:03:20 +05:30
parent c0c41789ab
commit aa23a7b1e6
3 changed files with 6 additions and 4 deletions

View File

@@ -23,6 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added `MCPClient`; a way to connect to MCP servers and use the MCP servers'
tools.
- Added `Mem0 OSS`, along with Mem0 cloud support now the OSS version is also available.
### Changed
- Function calls now receive a single parameter `FunctionCallParams` instead of

View File

@@ -161,9 +161,9 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection, _: argparse.Namespac
# =====================================================================
memory = Mem0MemoryService(
api_key=os.getenv("MEM0_API_KEY"), # Your Mem0 API key
user_id=USER_ID, # Unique identifier for the user
agent_id="agent1", # Optional identifier for the agent
run_id="session1", # Optional identifier for the run
user_id=USER_ID, # Unique identifier for the user
agent_id="agent1", # Optional identifier for the agent
run_id="session1", # Optional identifier for the run
params=Mem0MemoryService.InputParams(
search_limit=10,
search_threshold=0.3,

View File

@@ -120,7 +120,7 @@ class Mem0MemoryService(FrameProcessor):
"user_id": self.user_id,
"agent_id": self.agent_id,
"run_id": self.run_id,
"limit": self.search_limit
"limit": self.search_limit,
}
params = {k: v for k, v in params.items() if v is not None}
results = self.memory_client.search(**params)