Formatting and version bump -> 0.1.82 (#2507)

This commit is contained in:
Dev Khant
2025-04-07 11:31:16 +05:30
committed by GitHub
parent 39e5cbfacc
commit 93f34e4116
4 changed files with 11 additions and 72 deletions

View File

@@ -167,7 +167,9 @@ class MemoryGraph:
for item in search_results["tool_calls"][0]["arguments"]["entities"]:
entity_type_map[item["entity"]] = item["entity_type"]
except Exception as e:
logger.exception(f"Error in search tool: {e}, llm_provider={self.llm_provider}, search_results={search_results}")
logger.exception(
f"Error in search tool: {e}, llm_provider={self.llm_provider}, search_results={search_results}"
)
entity_type_map = {k.lower().replace(" ", "_"): v.lower().replace(" ", "_") for k, v in entity_type_map.items()}
logger.debug(f"Entity type map: {entity_type_map}")