Bug fixes in docs (#1801)

This commit is contained in:
Prateek Chhikara
2024-09-03 13:11:11 -07:00
committed by GitHub
parent 83eb800fb3
commit b2f683f3cc

View File

@@ -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)
</Step>
<Step title="Add memory 'I love to play badminton'">
@@ -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)
</Step>
@@ -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)
</Step>
@@ -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)
</Step>
@@ -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)
</Step>
@@ -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)
</Step>
@@ -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)
</Step>