We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70d24a2 commit cb9157aCopy full SHA for cb9157a
docs/NOSTORE.md
@@ -0,0 +1,20 @@
1
+### Persistence Options
2
+
3
+By default, all chat completions are saved to the database, including both the chat thread (conversation history) and the individual API request log.
4
+Use these options to control what gets saved to the database when making chat completions.
5
6
+#### `--nohistory`
7
8
+Skip saving the **chat thread** (conversation history) to the database. The individual API **request log** is still recorded.
9
10
+```sh
11
+llms "What is the capital of France?" --nohistory
12
+```
13
14
+#### `--nostore`
15
16
+Do not save **anything** to the database — no request log and no chat thread history. Implies `--nohistory`.
17
18
19
+llms "What is the capital of France?" --nostore
20
0 commit comments