Skip to content
This repository was archived by the owner on Jul 13, 2026. It is now read-only.

Commit 461dc82

Browse files
committed
Updated README.md for interactive mode
1 parent 7ee6794 commit 461dc82

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,11 @@ Your settings will be saved to `~/.deepshell/deepshell.conf`.
156156
./deepshell -v (or --version)
157157
```
158158

159+
**Start an interactive chat session**
160+
```bash
161+
./deepshell -i (or --interactive)
162+
```
163+
159164
## ⚙️ Configuration File
160165

161166
DeepShell stores its configuration in a JSON file located at `~/.deepshell/deepshell.conf`. While you can view this file, it's recommended to manage settings through DeepShell's command-line options for safety and ease of use.
@@ -204,8 +209,9 @@ export PATH=$PATH:/home/user/APPS-DIR
204209
2. Create an aliases for ds & dsq for quick keyboard actions.
205210
```bash
206211
nano .bashrc
207-
alias ds="deepshell"
208212
alias dsq="deepshell -q"
213+
alias ds="deepshell"
214+
alias dsi="deepshell -i"
209215
```
210216
3. Save .bashrc file.
211217
```bash
@@ -215,13 +221,17 @@ Ctrl+s & Ctrl+x
215221
```bash
216222
source .bashrc
217223
```
218-
5. Us the alias to quickly query the LLM
224+
5. Use the alias `dsq` to quickly query the LLM
219225
```bash
220226
dsq What is the best LLM?
221227
```
222-
6. Use the alias to quickly access features
228+
6. Use the alias `ds` to quickly access features with options
223229
```bash
224230
ds -v
225231
```
232+
7. Use the alias `dsi`to inter interactive mode
233+
```bash
234+
dsi
235+
```
226236

227237
Happy Querying!

0 commit comments

Comments
 (0)