-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* gptel.el: Bump version in header, improve package commentary.
- Loading branch information
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
;; Copyright (C) 2023 Karthik Chikmagalur | ||
|
||
;; Author: Karthik Chikmagalur <[email protected]> | ||
;; Version: 0.9.5 | ||
;; Version: 0.9.6 | ||
;; Package-Requires: ((emacs "27.1") (transient "0.4.0") (compat "29.1.4.1")) | ||
;; Keywords: convenience | ||
;; URL: https://github.com/karthink/gptel | ||
|
@@ -30,6 +30,8 @@ | |
;; gptel is a simple Large Language Model chat client, with support for multiple | ||
;; models and backends. | ||
;; | ||
;; It works in the spirit of Emacs, available at any time and in any buffer. | ||
;; | ||
;; gptel supports | ||
;; | ||
;; - The services ChatGPT, Azure, Gemini, Anthropic AI, Anyscale, Together.ai, | ||
|
@@ -50,6 +52,9 @@ | |
;; - Save chats as regular Markdown/Org/Text files and resume them later. | ||
;; - You can go back and edit your previous prompts or LLM responses when | ||
;; continuing a conversation. These will be fed back to the model. | ||
;; - Redirect prompts and responses easily | ||
;; - Rewrite, refactor or fill in regions in buffers | ||
;; - Write your own commands for custom tasks with a simple API. | ||
;; | ||
;; Requirements for ChatGPT, Azure, Gemini or Kagi: | ||
;; | ||
|
@@ -126,6 +131,12 @@ | |
;; | ||
;; When context is available, gptel will include it with each LLM query. | ||
;; | ||
;; Rewrite/refactor interface | ||
;; | ||
;; In any buffer: with a region selected, you can rewrite prose, refactor code | ||
;; or fill in the region. Use gptel's menu (C-u M-x `gptel-send') to access | ||
;; this feature. | ||
;; | ||
;; gptel in Org mode: | ||
;; | ||
;; gptel offers a few extra conveniences in Org mode. | ||
|