Skip to content

Commit 047e232

Browse files
Add safe filter
1 parent 415808e commit 047e232

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

prompts/examples/mcp-memory.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tools:
3030
<<: [*memory]
3131
command:
3232
- create-entities
33-
- "{{raw}}"
33+
- "{{raw|safe}}"
3434
- name: "create_relations"
3535
description: "Create multiple new relations between entities in the knowledge graph. Relations should be in active voice"
3636
parameters:
@@ -50,7 +50,7 @@ tools:
5050
<<: [*memory]
5151
command:
5252
- create-relations
53-
- "{{raw}}"
53+
- "{{raw|safe}}"
5454
- name: "add_observations"
5555
description: "Add new observations to existing entities in the knowledge graph"
5656
parameters:
@@ -73,7 +73,7 @@ tools:
7373
<<: [*memory]
7474
command:
7575
- add-observations
76-
- "{{raw}}"
76+
- "{{raw|safe}}"
7777
- name: "delete_entities"
7878
description: "Delete multiple entities and their associated relations from the knowledge graph"
7979
parameters:
@@ -89,7 +89,7 @@ tools:
8989
<<: [*memory]
9090
command:
9191
- delete-entities
92-
- "{{raw}}"
92+
- "{{raw|safe}}"
9393
- name: "delete_observations"
9494
description: "Delete specific observations from entities in the knowledge graph"
9595
parameters:
@@ -111,7 +111,7 @@ tools:
111111
<<: [*memory]
112112
command:
113113
- delete-observations
114-
- "{{raw}}"
114+
- "{{raw|safe}}"
115115
- name: "delete_relations"
116116
description: "Delete multiple relations from the knowledge graph"
117117
parameters:
@@ -132,7 +132,7 @@ tools:
132132
<<: [*memory]
133133
command:
134134
- delete-relations
135-
- "{{raw}}"
135+
- "{{raw|safe}}"
136136
- name: "read_graph"
137137
description: "Read the entire knowledge graph"
138138
parameters:
@@ -142,7 +142,7 @@ tools:
142142
<<: [*memory]
143143
command:
144144
- read-graph
145-
- "{{raw}}"
145+
- "{{raw|safe}}"
146146
- name: "search_nodes"
147147
description: "Search for nodes in the knowledge graph based on a query"
148148
parameters:
@@ -156,7 +156,7 @@ tools:
156156
<<: [*memory]
157157
command:
158158
- search-nodes
159-
- "{{raw}}"
159+
- "{{raw|safe}}"
160160
- name: "open_nodes"
161161
description: "Open specific nodes in the knowledge graph by their names"
162162
parameters:
@@ -172,7 +172,7 @@ tools:
172172
<<: [*memory]
173173
command:
174174
- open-nodes
175-
- "{{raw}}"
175+
- "{{raw|safe}}"
176176
---
177177

178178
# prompt

0 commit comments

Comments
 (0)