docs: Update README.md

This commit is contained in:
Igor Ilic 2025-12-18 14:46:21 +01:00
parent eda9f26b2b
commit 1724997683

View file

@ -126,6 +126,7 @@ Now, run a minimal pipeline:
```python
import cognee
import asyncio
from pprint import pprint
async def main():
@ -143,7 +144,7 @@ async def main():
# Display the results
for result in results:
print(result)
pprint(result)
if __name__ == '__main__':