mtnptrsn / command-ai

Github Copilot for CLI clone

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Command AI

A Github Copilot for CLI clone. Works on any operating system.

Examples

Example 1 Example 2

Setup

  1. Clone the project git clone https://github.com/othema/command-ai.git
  2. cd to the project directory, and create a .env file
  3. Add this data to the .env file:
    API_KEY = <YOUR_API_KEY>
    API_BASE = https://api.openai.com/v1  # To allow for proxies
    MODEL = gpt-3.5-turbo  # Or choose any other model
    The API_BASE key allows for proxy configuration, for example if you are not willing to pay for the OpenAI API key. If you are interested, take a look at this proxy to use this project for free.
  4. Install the requirements pip install -r requirements.txt

Usage

Basic usage: python main.py <prompt>
You can setup an alias in your .bashrc to allow for usage in any directory, for example (in Linux/MacOS):

alias ai="python /path/to/code/main.py"

This allows for usage like this from any directory: ai <prompt>

About

Github Copilot for CLI clone


Languages

Language:Python 100.0%