martin-san03
martin-san03
I have made one with help of gemeni and the OpenAI one: ```python import asyncio import re import os from typing import List, Tuple, Optional from google import genai from...
I believe I found the issue: ``` 2025-06-03 13:06:28,782 - root - INFO - Updating RAG database with deleted BaseNode 863. 2025-06-03 13:06:30,888 - google_genai.models - INFO - AFC is...
I found the problem, I was using async_to_sync to convert async functions to sync and be able to call it inside my synchronous application. Using ```python ev_loop = asyncio.get_event_loop() ev_loop.run_until_complete(graphiti.add_episode(...))...