openai-copilot

Your life Copilot powered by LLM models (CLI interface for LLM models with MCP tools).

GitHub Stars

24

User Rating

Not Rated

Favorites

0

Views

21

Forks

3

Issues

4

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

Install the copilot with the commands below:
sh
go install github.com/feiskyer/openai-copilot/cmd/openai-copilot@latest
| Environment | Description | |-------------|-------------| | OPENAI_API_KEY | OpenAI key. Required for OpenAI or OpenAI-compatible services. | | OPENAI_API_BASE | OpenAI Base URL. Optional. | | AZURE_OPENAI_API_KEY | Azure OpenAI API key. Required for Azure OpenAI service. | | AZURE_OPENAI_API_BASE | Azure OpenAI Base URL. Required for Azure OpenAI service. | | AZURE_OPENAI_API_VERSION | Azure OpenAI API version. Default is 2025-03-01-preview |
OpenAI Set the OpenAI [API key](https://platform.openai.com/account/api-keys) as the OPENAI_API_KEY environment variable to enable OpenAI functionality.
Anthropic Claude Anthropic Claude provides an [OpenAI compatible API](https://docs.anthropic.com/en/api/openai-sdk), so it could be used by using following config:
OPENAI_API_KEY=
OPENAI_API_BASE='https://api.anthropic.com/v1/'

Additional Resources