This commit is contained in:
Paul Gauthier 2024-09-27 12:56:47 -07:00
parent d50d97ab26
commit 932aaea845
2 changed files with 2 additions and 1 deletions

View file

@ -11,6 +11,7 @@
- New `--voice-format` switch to send voice audio as wav/mp3/webm, by @mbailey.
- Support for new Gemini 002 models.
- Will now follow HTTP redirects when scraping urls.
- Renamed `/clipboard` to `/paste`.
- Support for litellm's `extra_body` parameter, by @hypn4.
- Support for cursor shapes when in vim mode.
- Numerous bug fixes.

View file

@ -19,7 +19,6 @@ cog.out(get_help_md())
| **/ask** | Ask questions about the code base without editing any files |
| **/chat-mode** | Switch to a new chat mode |
| **/clear** | Clear the chat history |
| **/paste** | Add image/text from the clipboard to the chat (optionally provide a name for the image) |
| **/code** | Ask for changes to your code |
| **/commit** | Commit edits to the repo made outside the chat (commit message optional) |
| **/diff** | Display the diff of changes since the last message |
@ -33,6 +32,7 @@ cog.out(get_help_md())
| **/map-refresh** | Force a refresh of the repository map |
| **/model** | Switch to a new LLM |
| **/models** | Search the list of available models |
| **/paste** | Paste image/text from the clipboard into the chat (optionally provide a name for the image) |
| **/quit** | Exit the application |
| **/read-only** | Add files to the chat that are for reference, not to be edited |
| **/report** | Report a problem by opening a GitHub Issue |