This project is a simple command-line interface (CLI) tool for interacting with OpenAI's API including (ChatGPT, GPT-4). The tool allows users to send text to a GPT model and receive generated responses.
Rust programming language installed (>= 1.68.0) An OpenAI API key (you can obtain one by signing up at https://openai.com)
shell
cargo install ask-gpt
shell
export PATH="$PATH:$HOME/.cargo/bin"
Replace youropenaiapi_key with your actual OpenAI API key.
shell
touch .env
echo "OPENAI_KEY=your_openai_api_key" > .env
shell
Enter the content (finish input with an empty line):
Hello, how are you?
shell
ChatGpt: Hello! I'm doing well, thank you. How can I help you today?
To exit the program, press Ctrl+C.
shell
git clone https://github.com/dave-hay/ask-gpt.git
cd ask-gpt
Replace youropenaiapi_key with your actual OpenAI API key.
shell
touch .env
echo "OPENAI_KEY=your_openai_api_key" > .env
shell
cargo build --release
shell
./target/release/ask-gpt
This project is licensed under the MIT License. See the LICENSE file for details.