From 6096733892380fbc8b2be21f428a724785602a23 Mon Sep 17 00:00:00 2001 From: Boris Arzentar Date: Wed, 13 Mar 2024 18:16:30 +0100 Subject: [PATCH] fix: fix README type --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 35f230db6..71b0c38e1 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Make data processing for LLMs easy cognee pull-requests - cognee releases>
+    <img src=

@@ -107,26 +107,24 @@ With poetry: poetry add cognee ``` - - ## 💻 Usage - Add a new piece of information to storage ``` import cognee -cognee.add(data_path, file_name) +cognee.add(absolute_data_path, dataset_name) ``` - Use LLMs and cognee to create graphs ``` -cognee.cognify(file_name) +cognee.cognify(dataset_name) ``` - Render the graph after adding your Graphistry credentials to .env ``` graph_url = await render_graph(graph, graph_type = "networkx") -print(graph_url) +print(graph_url) ``` - Query the graph for a piece of information