You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,7 @@ The config should be stored in `config.json` file.
50
50
{
51
51
"log_file_path": "",
52
52
"model": "ollama:qwen2.5:3b",
53
+
"system_instruction": "Talk to a user like you are Elvis Presley.",
53
54
"mcpServers": {
54
55
"File_Storage_Server": {
55
56
"url": "http://localhost:8000/sse",
@@ -86,6 +87,41 @@ The config should be stored in `config.json` file.
86
87
87
88
The section `mcpServers` contains all MCP servers config. It supports both STDIO and SSE servers.
88
89
90
+
### Usig the memory server
91
+
92
+
This tools allows to use long-term AI memory using a MCP server of specific interface.
93
+
94
+
```
95
+
"mcpServers": {
96
+
"Memory_Server": {
97
+
"url": "http://localhost:8001/sse",
98
+
"headers": [
99
+
],
100
+
"interface": "memory"
101
+
},
102
+
.... other MCP servers
103
+
},
104
+
```
105
+
106
+
The value "interface": "memory" indicates that this server is a memory server. It will be used to store the chat history and the AI will be able to use it in the future conversations.
107
+
108
+
### Using the Retrieval-Augmented Generation server
109
+
110
+
This tools allows to use RAG using a MCP server of specific interface.
111
+
112
+
```
113
+
"mcpServers": {
114
+
"RAG_Server": {
115
+
"url": "http://localhost:8002/sse",
116
+
"headers": [
117
+
],
118
+
"interface": "rag"
119
+
},
120
+
.... other MCP servers
121
+
},
122
+
```
123
+
The value "interface": "rag" indicates that this server is a RAG server. It will be used to store the chat history and the AI will be able to use it in the future conversations.
124
+
89
125
To run the chat using this config stored in teh `config.json`, you can use the command:
0 commit comments