Skip to content

Commit cb9157a

Browse files
committed
Create NOSTORE.md
1 parent 70d24a2 commit cb9157a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/NOSTORE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
```sh
19+
llms "What is the capital of France?" --nostore
20+
```

0 commit comments

Comments
 (0)