We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 377082e commit b2c1d6dCopy full SHA for b2c1d6d
1 file changed
llms/extensions/system_prompts/README.md
@@ -0,0 +1,22 @@
1
+# System Prompts Extension
2
+
3
+This extension configures AI requests with a library of **over 200+** awesome curated system prompts that can be selected from the UI.
4
5
+## Custom System Prompts
6
7
+You can also maintain your own library of system prompts which can be maintained for all anonymous users at:
8
+`~/.llms/user/default/system-prompts.json`
9
10
+Or for signed in users at:
11
+`~/.llms/user/<github-user>/system-prompts.json`
12
13
+The JSON file should contain an array of Prompt objects, e.g:
14
15
+```json
16
+[
17
+ {
18
+ "name": "Helpful Assistant",
19
+ "prompt": "You are a helpful assistant."
20
+ }
21
+]
22
+```
0 commit comments