aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorShohei YOSHIDA <syohex@gmail.com>2025-09-05 12:42:18 +0900
committerShohei YOSHIDA <syohex@gmail.com>2025-09-05 12:42:18 +0900
commitcd3cd0ab3bb921d3ff1fafed1870e097668abca3 (patch)
tree008e3d30fded8c5fb65d962f4201801bd999f40d /src
parentMerge pull request #1150 from zsh-users/nvm (diff)
downloadzsh-completions-cd3cd0ab3bb921d3ff1fafed1870e097668abca3.tar
zsh-completions-cd3cd0ab3bb921d3ff1fafed1870e097668abca3.tar.gz
zsh-completions-cd3cd0ab3bb921d3ff1fafed1870e097668abca3.tar.bz2
zsh-completions-cd3cd0ab3bb921d3ff1fafed1870e097668abca3.tar.lz
zsh-completions-cd3cd0ab3bb921d3ff1fafed1870e097668abca3.tar.xz
zsh-completions-cd3cd0ab3bb921d3ff1fafed1870e097668abca3.tar.zst
zsh-completions-cd3cd0ab3bb921d3ff1fafed1870e097668abca3.zip
Update chatblade completion to version 0.7.0
Diffstat (limited to 'src')
-rw-r--r--src/_chatblade6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/_chatblade b/src/_chatblade
index 62d12e6..cf8995d 100644
--- a/src/_chatblade
+++ b/src/_chatblade
@@ -3,7 +3,7 @@
# Description
# -----------
#
-# Completion script for chatblade (https://github.com/npiv/chatblade)
+# Completion script for chatblade 0.7.0 (https://github.com/npiv/chatblade)
#
# ------------------------------------------------------------------------------
# Authors
@@ -20,9 +20,11 @@ _chatblade() {
args+=(
'(- *)'{-h,--help}'[show this help message and exit]'
+ '(- *)--version[display the chatblade version]'
'--openai-api-key[the OpenAI API key can also be set as env variable OPENAI_API_KEY]:key'
+ '--openai-base-url[a custom URL to use the openAI against a local or custom model]:key'
'--temperature[temperature (openai setting)]:temperature'
- '(-c --chat-gpt)'{-c,--chat-gpt}'[chat GPT model 3.5/4 shorthand or full qualified model name, can also be set via env variable OPENAI_API_MODEL]:chat GPT model:(3.5 4)'
+ '(-c --chat-gpt)'{-c,--chat-gpt}'[chat GPT model 3.5/4 shorthand or full qualified model name, can also be set via env variable OPENAI_API_MODEL]:chat GPT model:(3.5 4 4o mini o1 o1mini)'
'(-i --interactive)'{-i,--interactive}'[start an interactive chat session. This will implicitly continue the conversation]'
'(-s --stream)'{-s,--stream}'[Stream the incoming text to the terminal]'
'(-t --tokens)'{-t,--tokens}'[display what *would* be sent, how many tokens, and estimated costs]'