chore: fix search db tests

This commit is contained in:
hajdul88 2025-08-18 14:53:47 +02:00
parent 0529d4b87f
commit 9a46d145bb

View file

@ -44,16 +44,16 @@ async def main():
await cognee.cognify([dataset_name])
context_gk = await GraphCompletionRetriever().get_context(
context_gk, _ = await GraphCompletionRetriever().get_context(
query="Next to which country is Germany located?"
)
context_gk_cot = await GraphCompletionCotRetriever().get_context(
context_gk_cot, _ = await GraphCompletionCotRetriever().get_context(
query="Next to which country is Germany located?"
)
context_gk_ext = await GraphCompletionContextExtensionRetriever().get_context(
context_gk_ext, _ = await GraphCompletionContextExtensionRetriever().get_context(
query="Next to which country is Germany located?"
)
context_gk_sum = await GraphSummaryCompletionRetriever().get_context(
context_gk_sum, _ = await GraphSummaryCompletionRetriever().get_context(
query="Next to which country is Germany located?"
)