You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`/help` - Display keyboard shortcuts and agent commands
165
160
166
-
### Usage Examples
167
-
168
-
#### Basic Fix Request
169
-
170
-
```
171
-
You: fix the syntax error on line 15
172
-
```
173
-
174
-
The AI detects "fix" keyword, reads your file, identifies the syntax error, and applies the correction.
175
-
176
-
#### Using /fix Command
177
-
178
-
```
179
-
You: /fix add error handling to the main function
180
-
```
181
-
182
-
Explicitly requests agentic mode. The AI adds error handling code to your main function.
183
-
184
-
#### Using /ask Command
185
-
186
-
```
187
-
You: /ask how does this function work?
188
-
```
189
-
190
-
Explicitly requests conversational mode. The AI explains the function without modifying code.
191
-
192
-
#### Using /preview Command
193
-
194
-
```
195
-
You: /preview refactor this to use a switch statement
196
-
```
197
-
198
-
The AI shows you what changes it would make before applying them. You can then approve or request modifications.
199
-
200
-
#### Using /model Command
201
-
202
-
```
203
-
You: /model
204
-
```
205
-
206
-
The AI displays the current agent (ollama or gemini) and model being used (e.g., llama2, gemini-2.5-flash-lite). If using Gemini, it also displays the API key from the configuration.
207
-
208
-
#### Using /config Command
209
-
210
-
```
211
-
You: /config
212
-
```
213
-
214
-
Opens an interactive configuration editor where you can modify settings without leaving the application:
215
-
- Navigate fields with Up/Down or K/J keys
216
-
- Press Enter to edit a field value
217
-
- Press Enter again to save the edited value
218
-
- Press Esc to save all changes and exit config mode
219
-
220
-
The configuration is saved to `~/.ti/config.json` and applied immediately without restarting the application.
221
-
222
-
#### Using /help Command
223
-
224
-
```
225
-
You: /help
226
-
```
227
-
228
-
The AI displays a comprehensive help message including:
0 commit comments