Add qdrant test
This commit is contained in:
parent
0d230c930a
commit
d5c7c667c4
1 changed files with 7 additions and 1 deletions
|
|
@ -67,4 +67,10 @@ async def main():
|
||||||
|
|
||||||
search_results = await cognee.search("ADJACENT", {"query": "DefaultGraphModel__default_user"})
|
search_results = await cognee.search("ADJACENT", {"query": "DefaultGraphModel__default_user"})
|
||||||
assert len(search_results) != 0, "The search results list is empty."
|
assert len(search_results) != 0, "The search results list is empty."
|
||||||
print("The search results list is not empty.")
|
print("The search results list is not empty.")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import asyncio
|
||||||
|
asyncio.run(main())
|
||||||
Loading…
Add table
Reference in a new issue