Update docs/quickstart.md

This commit is contained in:
Boris 2024-11-18 17:50:15 +01:00 committed by GitHub
parent 64bc425330
commit bb404f51f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,7 +59,7 @@ await cognee.add(text) # Add a new piece of information
await cognee.cognify() # Use LLMs and cognee to create knowledge
search_results = await cognee.search("INSIGHTS", {'query_text': 'Tell me about NLP'}) # Query cognee for the knowledge
search_results = await cognee.search(SearchType.INSIGHTS, query_text='Tell me about NLP') # Query cognee for the knowledge
for result_text in search_results:
print(result_text)