branch: externals/llm
commit 2e9cc586e9a654adf709e8c0691122c9a38a8120
Author: Andrew Hyatt <ahy...@gmail.com>
Commit: Andrew Hyatt <ahy...@gmail.com>

    Updated copyright notices
---
 Eldev                      | 7 +++----
 llm-fake.el                | 2 +-
 llm-gemini.el              | 2 +-
 llm-gpt4all.el             | 2 +-
 llm-llamacpp.el            | 2 +-
 llm-ollama.el              | 4 ++--
 llm-openai.el              | 2 +-
 llm-provider-utils-test.el | 2 +-
 llm-provider-utils.el      | 2 +-
 llm-request-plz.el         | 2 +-
 llm-test.el                | 2 +-
 llm-tester.el              | 2 +-
 llm-vertex.el              | 2 +-
 llm.el                     | 2 +-
 14 files changed, 17 insertions(+), 18 deletions(-)

diff --git a/Eldev b/Eldev
index 6bbd518bb3..568f0fc2c2 100644
--- a/Eldev
+++ b/Eldev
@@ -1,8 +1,7 @@
-; -*- mode: emacs-lisp; lexical-binding: t -*-
+                                        ; -*- mode: emacs-lisp; 
lexical-binding: t -*-
 
-;; Uncomment some calls below as needed for your project.
 (eldev-use-package-archive 'gnu-elpa)
-;(eldev-use-package-archive 'nongnu-elpa)
-                                        ;(eldev-use-package-archive 'melpa)
+(eldev-use-plugin 'maintainer)
+
 (setq eldev-standard-excludes `(:or ,eldev-standard-excludes "plz*" 
"utilities/*"))
 (setq checkdoc-force-docstrings-flag nil)
diff --git a/llm-fake.el b/llm-fake.el
index 01ff16b977..c5881788fa 100644
--- a/llm-fake.el
+++ b/llm-fake.el
@@ -1,6 +1,6 @@
 ;;; llm-fake.el --- Use for developers looking at llm calls. -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; Homepage: https://github.com/ahyatt/llm
diff --git a/llm-gemini.el b/llm-gemini.el
index c1ff41a999..9e59511799 100644
--- a/llm-gemini.el
+++ b/llm-gemini.el
@@ -1,6 +1,6 @@
 ;;; llm-gemini.el --- LLM implementation of Google Cloud Gemini AI -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; Homepage: https://github.com/ahyatt/llm
diff --git a/llm-gpt4all.el b/llm-gpt4all.el
index f1a45d5735..979331c2e0 100644
--- a/llm-gpt4all.el
+++ b/llm-gpt4all.el
@@ -1,6 +1,6 @@
 ;;; llm-gpt4all.el --- llm module for integrating with GPT4All -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; Homepage: https://github.com/ahyatt/llm
diff --git a/llm-llamacpp.el b/llm-llamacpp.el
index c25e9bdb88..3ffe8b70d3 100644
--- a/llm-llamacpp.el
+++ b/llm-llamacpp.el
@@ -1,6 +1,6 @@
 ;;; llm-llamacpp.el --- llm module for integrating with llama.cpp. -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; Homepage: https://github.com/ahyatt/llm
diff --git a/llm-ollama.el b/llm-ollama.el
index 7ca1f89bec..ab29541de9 100644
--- a/llm-ollama.el
+++ b/llm-ollama.el
@@ -1,6 +1,6 @@
 ;;; llm-ollama.el --- llm module for integrating with Ollama. -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; Homepage: https://github.com/ahyatt/llm
@@ -119,7 +119,7 @@ PROVIDER is the llm-ollama provider."
       (push `("temperature" . ,(llm-chat-prompt-temperature prompt)) options))
     (when (llm-chat-prompt-max-tokens prompt)
       (push `("num_predict" . ,(llm-chat-prompt-max-tokens prompt)) options))
-    (setq options (append options (llm-chat-prompt-non-standard-params 
prompt)))    
+    (setq options (append options (llm-chat-prompt-non-standard-params 
prompt)))
     (when options (push `("options" . ,options) request-alist))
     request-alist))
 
diff --git a/llm-openai.el b/llm-openai.el
index 0d3ace7941..50256fb449 100644
--- a/llm-openai.el
+++ b/llm-openai.el
@@ -1,6 +1,6 @@
 ;;; llm-openai.el --- llm module for integrating with Open AI -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; Homepage: https://github.com/ahyatt/llm
diff --git a/llm-provider-utils-test.el b/llm-provider-utils-test.el
index e89354803f..b73bf7c741 100644
--- a/llm-provider-utils-test.el
+++ b/llm-provider-utils-test.el
@@ -1,6 +1,6 @@
 ;;; llm-provider-utils-test.el --- Tests for llm-provider-utils -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; This program is free software; you can redistribute it and/or
 ;; modify it under the terms of the GNU General Public License as
diff --git a/llm-provider-utils.el b/llm-provider-utils.el
index 4efc4aafe0..c7a972e8bb 100644
--- a/llm-provider-utils.el
+++ b/llm-provider-utils.el
@@ -1,6 +1,6 @@
 ;;; llm-provider-utils.el --- Functions to make building providers easier -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; This program is free software; you can redistribute it and/or
 ;; modify it under the terms of the GNU General Public License as
diff --git a/llm-request-plz.el b/llm-request-plz.el
index e3fbbe5cde..d4d76ebef8 100644
--- a/llm-request-plz.el
+++ b/llm-request-plz.el
@@ -1,6 +1,6 @@
 ;;; llm-request-plz.el --- Curl request handling code -*- lexical-binding: t; 
package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; This program is free software; you can redistribute it and/or
 ;; modify it under the terms of the GNU General Public License as
diff --git a/llm-test.el b/llm-test.el
index bb4ec76311..8b08d768da 100644
--- a/llm-test.el
+++ b/llm-test.el
@@ -1,6 +1,6 @@
 ;;; llm-test.el --- Unit tests for the llm module -*- lexical-binding: t; 
package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; SPDX-License-Identifier: GPL-3.0-or-later
diff --git a/llm-tester.el b/llm-tester.el
index 5e56ce29ae..fa7c6f8afa 100644
--- a/llm-tester.el
+++ b/llm-tester.el
@@ -1,6 +1,6 @@
 ;;; llm-tester.el --- Helpers for testing LLM implementation -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; SPDX-License-Identifier: GPL-3.0-or-later
diff --git a/llm-vertex.el b/llm-vertex.el
index 2f0ffa59a6..a792a3bb81 100644
--- a/llm-vertex.el
+++ b/llm-vertex.el
@@ -1,6 +1,6 @@
 ;;; llm-vertex.el --- LLM implementation of Google Cloud Vertex AI -*- 
lexical-binding: t; package-lint-main-file: "llm.el"; -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; Homepage: https://github.com/ahyatt/llm
diff --git a/llm.el b/llm.el
index 9886d011e8..521343cc4e 100644
--- a/llm.el
+++ b/llm.el
@@ -1,6 +1,6 @@
 ;;; llm.el --- Interface to pluggable llm backends -*- lexical-binding: t; 
byte-compile-docstring-max-column: 200 -*-
 
-;; Copyright (c) 2023  Free Software Foundation, Inc.
+;; Copyright (c) 2023, 2024  Free Software Foundation, Inc.
 
 ;; Author: Andrew Hyatt <ahy...@gmail.com>
 ;; Homepage: https://github.com/ahyatt/llm

Reply via email to