This commit is contained in:
Paul Gauthier 2024-09-28 15:15:42 -07:00
parent 97ddcb2ae6
commit b78d19c7a5
2 changed files with 6 additions and 2 deletions

View file

@ -11,6 +11,7 @@
- New `--voice-format` switch to send voice audio as wav/mp3/webm, by @mbailey. - New `--voice-format` switch to send voice audio as wav/mp3/webm, by @mbailey.
- Support for new Gemini 002 models. - Support for new Gemini 002 models.
- Will now follow HTTP redirects when scraping urls. - Will now follow HTTP redirects when scraping urls.
- Many confirmation questions can be skipped for the rest of the session with "(D)on't ask again" response.
- ModelSettings takes `extra_params` dict to specify any extras to pass to `litellm.completion()`. - ModelSettings takes `extra_params` dict to specify any extras to pass to `litellm.completion()`.
- Renamed `/clipboard` to `/paste`. - Renamed `/clipboard` to `/paste`.
- New `/copy` command to copy the last LLM response to the clipboard. - New `/copy` command to copy the last LLM response to the clipboard.

View file

@ -22,13 +22,16 @@ cog.out(text)
- Use a strong reasoning model like o1-preview as your Architect. - Use a strong reasoning model like o1-preview as your Architect.
- Use a cheaper, faster model like gpt-4o as your Editor. - Use a cheaper, faster model like gpt-4o as your Editor.
- New `--o1-preview` and `--o1-mini` shortcuts. - New `--o1-preview` and `--o1-mini` shortcuts.
- New settings for completion menu colors, by @smh. - New settings for completion menu colors.
- New `--voice-format` switch to send voice audio as wav/mp3/webm, by @mbailey. - New `--voice-format` switch to send voice audio as wav/mp3/webm, by @mbailey.
- Support for new Gemini 002 models. - Support for new Gemini 002 models.
- Will now follow HTTP redirects when scraping urls. - Will now follow HTTP redirects when scraping urls.
- Many confirmation questions can be skipped for the rest of the session with "(D)on't ask again" response.
- ModelSettings takes `extra_params` dict to specify any extras to pass to `litellm.completion()`. - ModelSettings takes `extra_params` dict to specify any extras to pass to `litellm.completion()`.
- Renamed `/clipboard` to `/paste`. - Renamed `/clipboard` to `/paste`.
- Support for litellm's `extra_body` parameter, by @hypn4. - New `/copy` command to copy the last LLM response to the clipboard.
- Autocomplete for `/read-only` supports the entire filesystem.
- Support for litellm's `extra_body` parameter.
- Support for cursor shapes when in vim mode. - Support for cursor shapes when in vim mode.
- Numerous bug fixes. - Numerous bug fixes.