gpt-cli CLI tool for GPT with OpenAI API
This package is required Go 1.20 or later.
$ go install github.com/goark/gpt-cli@latest
See latest release.
$ gpt-cli -h
CLI tool for GPT with OpenAI API.
Usage:
gpt-cli [flags]
gpt-cli [command]
Available Commands:
chat Chat with GPT-x
help Help about any command
version Print the version number
Flags:
--api-key string OpenAI API key
--config string Config file (default /home/username/.config/gpt-cli/config.yaml)
--debug for debug
-h, --help help for gpt-cli
--log-dir string Directory for log files (default "/home/username/.cache/gpt-cli")
--log-level string Log level [nop|error|warn|info|debug|trace] (default "nop")
Use "gpt-cli [command] --help" for more information about a command.
$ gpt-cli chat -h
Chat with GPT-x, input from standard input.
Usage:
gpt-cli chat [flags]
gpt-cli chat [command]
Aliases:
chat, c
Available Commands:
history Print chat history
interactive Interactive mode
Flags:
-a, --attach-file strings Path of attach files (text file only)
-c, --clipboard Input message from clipboard
-h, --help help for chat
-m, --message string Chat message
-o, --output-file string Path of save file (JSON format)
-p, --prepare-file string Path of prepare file (JSON format)
--rest Output from GPT by no streaming
Global Flags:
--api-key string OpenAI API key
--config string Config file (default /home/username/.config/gpt-cli/config.yaml)
--debug for debug
--log-dir string Directory for log files (default "/home/username/.cache/gpt-cli")
--log-level string Log level [nop|error|warn|info|debug|trace] (default "nop")
Use "gpt-cli chat [command] --help" for more information about a command.
$ gpt-cli c --api-key "your-api-key" -m "hello"
Hello! How can I help you today?
save to /home/username/.cache/gpt-cli/chat.2133582955.json
$ cat sample/hello.go
package main
import "fmt"
func main() {
fmt.Println("Hello, world.")
}
$ gpt-cli c -a sample/hello.go -m "Summarize the source code below."
The source code is a basic program in the Go programming language that prints the text "Hello, world." to the console. It includes the standard library package "fmt" and a main function that utilizes the "Println" function from the "fmt" package.
save to /home/username/.cache/gpt-cli/chat.3658387869.json
$ gpt-cli chat history -h
Print chat history.
Usage:
gpt-cli chat history [flags]
Aliases:
history, hist, h
Flags:
-a, --assistant-name string Assistant name (display name)
-h, --help help for history
-f, --history-file string Path of history file (JSON format)
-u, --user-name string User name (display name)
Global Flags:
--api-key string OpenAI API key
--config string Config file (default /home/username/.config/gpt-cli/config.yaml)
--debug for debug
--log-dir string Directory for log files (default "/home/username/.cache/gpt-cli")
--log-level string Log level [nop|error|warn|info|debug|trace] (default "nop")
$ gpt-cli c h -u Spiegel -a ChatGPT -f /home/username/.cache/gpt-cli/chat.2133582955.json
# Chat with GPT
- `model`: gpt-3.5-turbo-0301
## Spiegel
hello
## ChatGPT
Hello! How can I help you today?
$ gpt-cli chat interactive -h
Interactive mode in chat.
Usage:
gpt-cli chat interactive [flags]
Aliases:
interactive, i
Flags:
-h, --help help for interactive
-m, --multi-line Editing with multi-line mode
-o, --output-file string Path of save file (JSON format)
-p, --prepare-file string Path of prepare file (JSON format)
Global Flags:
--api-key string OpenAI API key
--config string Config file (default /home/username/.config/gpt-cli/config.yaml)
--debug for debug
--log-dir string Directory for log files (default "/home/username/.cache/gpt-cli")
--log-level string Log level [nop|error|warn|info|debug|trace] (default "nop")
$ gpt-cli c i --api-key "your-api-key"
Interactive mode in chat.
Chat> こんにちは
こんにちは!私はAIのアシスタントです。何かお手伝いできることがありますか?
Chat> 科学雑誌の日経サイエンスにChatGPTの特集が載るそうです。どんな内容になるか予想してみましょう。
ChatGPTとは、人工知能による自然言語処理を利用した対話型のチャットボットです。日経サイエンスがChatGPTに特集を組むことから、以下のような予想が考えられます。
1. ChatGPTの機能や特徴の紹介
ChatGPTの性能、動作原理などの詳しい解説や、どのような機能があるのか、どのような場面で活躍するのかなどが紹介される可能性があります。
2. ChatGPTの応用例の紹介
ChatGPTが活用される応用例として、カスタマーサポート、医療支援、人工知能アシスタントなどがあります。特集では、ChatGPTがどのようにこれらの分野で活躍しているのか、具体例を交えて解説されるかもしれません。
3. ChatGPTの進化と今後の展望について
ChatGPTは、自然言語処理分野での革新的な技術であり、今後、ますます進化していくことが期待されています。特集では、今後どのような改良がされ、また、普及の度合いがどこまで広がるのか、その展望についても取り上げられるかもしれません。
Chat> ありがとうございます。雑誌を読むのが楽しみです
どういたしまして。日経サイエンスは、科学技術に関する話題や最新の研究成果などが掲載され、とても興味深く読める雑誌ですね。ChatGPTに特集が組まれるということで、ますます注目が集まりそうですね。楽しみにしていてください。
Chat> q
save to /home/username/.cache/gpt-cli/chat.2788390222.json
api-key: your_api_key_string
log-dir: /var/log/gpt-cli
log-level: info
$ gpt-cli c -m "hello"
Hello! How can I help you today?
save to /home/username/.cache/gpt-cli/chat.2133582955.json