Navigating Cells
Uses a cell selection system akin to a Jupyter notebook.
- ↑ / ↓, click: Change selected cell
- Shift + ↑ / ↓: Move cell up/down
- Alt + ↑ / ↓: Collapse/uncollapse cell
- Enter, double-click: Edit cell
- Escape, click outside: Stop editing cell
- Space: Toggle cell as enabled/disabled (determines inclusion in chat completions)
- Shift+space: Condense/uncondense large cell
- Backspace: Delete cell
- 0-9: Quicksave to slot 0-9
- Shift+0-9: Quickload from slot 0-9
- Ctrl+0-9: Delete quicksave in slot 0-9
- Ctrl-z: Undo last operation (usually doesn't work)
Adding and modifying roles
- a: Add assistant message
- s: Add system message
- d, u: Add user message
- c: Add comment
- f: Add last output as assistant message
- Left, right, click on role: cycle message role
Generating text
- \: Generate chat completion
- |: Generate text completion
Other functions
- Certain text models (GPT-3.5-turbo, DeepSeek v3) offer FIM (fill-in-middle) support. To use this, place the prompt and suffix in two consecutive cells, then select the first cell to enable the button.
- Certain chat models (Claude 3.x, DeepSeek v3) allow you to prefill the assistant's response. To use this, put an assistant block with the desired prefix at the end of the chat before generating a chat completion.
- If you don't want to see a certain provider's models in the model selector, set their API key to 'hide'. Doing this for Exa will hide the 'Similar Sites' and 'Exa Search' buttons.
- Any instance of `{{url}}` in a message block, where `url` is a valid URL (e.g. `https://example.com`), will be silently replaced by the contents of that URL. Jina or Exa will be used to parse the contents if available and enabled in the settings, else its raw HTML will be fetched.
- The max tokens boxes accept not just integers ('4096'), but also percentages ('75%') of the model's max output length; in addition, the arguments 'max', 'auto', and '' (the empty string) will be treated as '100%'.
- Multiple message blocks can occupy the same row, and moved up or down together. They will be linearized in comic book order. Use shift+left and shift+right to move a block to the end of the previous row or start of the next row, or to move blocks within a row. If "generate completion in new block" is enabled, consecutive triggers will be placed in the same row.
- Because DeepSeek text completions require especially high temperatures to work, and changing the temperature manually is annoying, the input temperature is silently doubled (max 1.75) for these completions.
Notes
- Don't use Ctrl-C + Ctrl-V to copy/paste, as this will pick up formatting. Use Ctrl-Shift-C and Ctrl-Shift-V instead. Or paste into your address bar to remove formatting and then copy from there.