From b2f683f3cc00927d4d68fdb8890e4afb58fde667 Mon Sep 17 00:00:00 2001 From: Prateek Chhikara <46902268+prateekchhikara@users.noreply.github.com> Date: Tue, 3 Sep 2024 13:11:11 -0700 Subject: [PATCH] Bug fixes in docs (#1801) --- docs/open-source/graph_memory/overview.mdx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/open-source/graph_memory/overview.mdx b/docs/open-source/graph_memory/overview.mdx index 9d53f666..5a2c4214 100644 --- a/docs/open-source/graph_memory/overview.mdx +++ b/docs/open-source/graph_memory/overview.mdx @@ -193,7 +193,7 @@ Below are the steps to add memories and visualize the graph: ```python m.add("I like going to hikes", user_id="alice123") ``` -![Graph Memory Visualization](../images/graph_memory/graph_example1.png) +![Graph Memory Visualization](/images/graph_memory/graph_example1.png) @@ -202,7 +202,7 @@ m.add("I like going to hikes", user_id="alice123") ```python m.add("I love to play badminton", user_id="alice123") ``` -![Graph Memory Visualization](../images/graph_memory/graph_example2.png) +![Graph Memory Visualization](/images/graph_memory/graph_example2.png) @@ -211,7 +211,7 @@ m.add("I love to play badminton", user_id="alice123") ```python m.add("I hate playing badminton", user_id="alice123") ``` -![Graph Memory Visualization](../images/graph_memory/graph_example3.png) +![Graph Memory Visualization](/images/graph_memory/graph_example3.png) @@ -220,7 +220,7 @@ m.add("I hate playing badminton", user_id="alice123") ```python m.add("My friend name is john and john has a dog named tommy", user_id="alice123") ``` -![Graph Memory Visualization](../images/graph_memory/graph_example4.png) +![Graph Memory Visualization](/images/graph_memory/graph_example4.png) @@ -229,7 +229,7 @@ m.add("My friend name is john and john has a dog named tommy", user_id="alice123 ```python m.add("My name is Alice", user_id="alice123") ``` -![Graph Memory Visualization](../images/graph_memory/graph_example5.png) +![Graph Memory Visualization](/images/graph_memory/graph_example5.png) @@ -238,7 +238,7 @@ m.add("My name is Alice", user_id="alice123") ```python m.add("John loves to hike and Harry loves to hike as well", user_id="alice123") ``` -![Graph Memory Visualization](../images/graph_memory/graph_example6.png) +![Graph Memory Visualization](/images/graph_memory/graph_example6.png) @@ -248,7 +248,7 @@ m.add("John loves to hike and Harry loves to hike as well", user_id="alice123") m.add("My friend peter is the spiderman", user_id="alice123") ``` -![Graph Memory Visualization](../images/graph_memory/graph_example7.png) +![Graph Memory Visualization](/images/graph_memory/graph_example7.png)