You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using this Python library and it suggests that a minimal use looks something like this:
fromgraphiti_coreimportGraphitigraphiti=Graphiti("bolt://localhost:7687", "neo4j", "password")
results=awaitgraphiti.search('Who was the California Attorney General?')
As I understand it this should be functionally equivalent, but the result of search is <coroutine object Graphiti.search at 0x11e2ac040> - it seems like using await is not properly resolving the coroutine.
The text was updated successfully, but these errors were encountered:
I'm using this Python library and it suggests that a minimal use looks something like this:
Here's what I'm doing:
As I understand it this should be functionally equivalent, but the result of search is
<coroutine object Graphiti.search at 0x11e2ac040>
- it seems like using await is not properly resolving the coroutine.The text was updated successfully, but these errors were encountered: