Skip to content

Releases: Elixir-Craft/terminalAI

v0.1.0

19 May 07:37
c9ff845

Choose a tag to compare

v0.1.0 Pre-release
Pre-release

Terminal AI v0.1.0

Terminal AI is a command line tool that uses Gemini AI and OpenAI API to generate text and code. It can be used to generate ideas, write code, debug code, and more.

Features

  • Generate text and code using Gemini AI and OpenAI API
  • Chat with Gemini AI and OpenAI
  • Configure Services and API Keys
  • Input from file or clipboard
  • Output to file or stdout

Installation

git clone https://github.com/Elixir-Craft/terminalAI.git
cd terminalAI
go mod tidy
go build -v -o out ./...

Configuration

./terminalai config init

Examples

./terminalai "Generate Some Text"
./terminalai -p " $(tree -L 2) generate docker-compose file for this project" -o docker-compose.yaml
./terminalai -i input.txt -p "Read the following text and generate a summary" -o output.txt
./terminalai -i code.py -p "The following code snippet is not working. Can you debug it?"
./terminalai -p "Translate the following text to Spanish: 'Hello, world!'"

Chat

./terminalai chat

License

Terminal AI is licensed under the MIT License.

What's Changed

New Contributors

Full Changelog: https://github.com/Elixir-Craft/terminalAI/commits/v0.1.0