diff options
| author | Shohei YOSHIDA <syohex@gmail.com> | 2025-09-05 12:42:18 +0900 |
|---|---|---|
| committer | Shohei YOSHIDA <syohex@gmail.com> | 2025-09-05 12:42:18 +0900 |
| commit | cd3cd0ab3bb921d3ff1fafed1870e097668abca3 (patch) | |
| tree | 008e3d30fded8c5fb65d962f4201801bd999f40d /src | |
| parent | Merge pull request #1150 from zsh-users/nvm (diff) | |
| download | zsh-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/_chatblade | 6 |
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]' |
