Skip to content

Commit

Permalink
gptel: Bump version, require cl-lib
Browse files Browse the repository at this point in the history
* gptel.el: Bump package version to 0.9.7.  Require cl-lib at
run-time -- we already do in the other gptel libraries, so it's
not worth working around it any more.  Update package commentary.
  • Loading branch information
karthink committed Dec 5, 2024
1 parent 2a0de8f commit 5a5cddb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gptel.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright (C) 2023 Karthik Chikmagalur

;; Author: Karthik Chikmagalur <[email protected]>
;; Version: 0.9.6
;; Version: 0.9.7
;; Package-Requires: ((emacs "27.1") (transient "0.4.0") (compat "29.1.4.1"))
;; Keywords: convenience
;; URL: https://github.com/karthink/gptel
Expand Down Expand Up @@ -36,7 +36,7 @@
;;
;; - The services ChatGPT, Azure, Gemini, Anthropic AI, Anyscale, Together.ai,
;; Perplexity, Anyscale, OpenRouter, Groq, PrivateGPT, DeepSeek, Cerebras,
;; Github Models and Kagi (FastGPT & Summarizer)
;; Github Models, xAI and Kagi (FastGPT & Summarizer)
;; - Local models via Ollama, Llama.cpp, Llamafiles or GPT4All
;;
;; Additionally, any LLM service (local or remote) that provides an
Expand Down Expand Up @@ -176,8 +176,8 @@
'gptel-set-topic 'gptel-org-set-topic "0.7.5")

(eval-when-compile
(require 'subr-x)
(require 'cl-lib))
(require 'subr-x))
(require 'cl-lib)
(require 'compat nil t)
(require 'url)
(require 'map)
Expand Down

0 comments on commit 5a5cddb

Please sign in to comment.