Skip to main content

BYOM AI Agents - A terminal-based AI coding agent that works with any LLM provider (OpenAI, Anthropic, Google, etc.)

Project description

BYOM AI Agents

Bring Your Own Model - A terminal-based AI coding agent that works with ANY LLM provider.

Python 3.10+ License: MIT Code style: ruff

🎯 What is BYOM AI Agents?

BYOM AI Agents is a powerful, terminal-based AI coding assistant that puts YOU in control. Unlike other AI coding tools that lock you into a single provider, BYOM lets you:

  • Use Any LLM: OpenAI, Anthropic Claude, Google Gemini, Ollama, LM Studio, OpenRouter
  • Keep Your Data Private: Run everything locally with Ollama or LM Studio
  • Stay Flexible: Switch between providers without changing your workflow
  • Work Your Way: Terminal-first interface with rich formatting and progress indicators

✨ Features

🔌 Universal LLM Support (BYOM!)

Cloud Providers:

  • OpenAI: GPT-4, GPT-4 Turbo, GPT-3.5
  • Anthropic: Claude 3.5 Sonnet, Opus, Haiku
  • Google AI: Gemini Pro, Gemini 1.5 Pro
  • OpenRouter: Access 200+ models through one API (GPT-4, Claude, Llama, Mistral, etc.)

Local Providers (Privacy-First!):

  • 🏠 Ollama: Run Llama 3, Mistral, CodeLlama, DeepSeek, and 100+ models locally
  • 🏠 LM Studio: Local models with a beautiful GUI
  • 🏠 Any OpenAI-compatible server: vLLM, LocalAI, etc.

Smart Features:

  • Auto-detection: Automatic provider selection based on model name
  • Easy Setup: Interactive wizard guides you through configuration
  • Flexible: Switch providers anytime without changing your workflow
  • No lock-in: Your data, your models, your choice

🛠️ Powerful Built-in Tools

  • File Operations: Read, write, edit files with smart diff display
  • Search & Navigation: Grep, glob, and recursive file finding
  • Shell Integration: Execute commands with approval workflows
  • Web Research: Built-in web search and URL fetching
  • Task Management: Persistent todos with status tracking
  • Memory System: Remember user preferences across sessions
  • MCP Support: Integrate Model Context Protocol servers

💡 Smart Features

  • Context Management: Automatic conversation compression when needed
  • Loop Detection: Prevents the agent from getting stuck
  • Approval Policies: Control which actions require confirmation
  • Session Persistence: Save and resume conversations
  • Checkpoints: Create snapshots of your work
  • Rich TUI: Beautiful terminal UI with syntax highlighting

📦 Installation

Using pip (Recommended)

pip install byom-ai-agents

From Source

git clone https://github.com/abhishek-dev/byom-ai-agents.git
cd byom-ai-agents
pip install -e .

Using uv (Development)

git clone https://github.com/abhishek-dev/byom-ai-agents.git
cd byom-ai-agents
uv sync

🚀 Quick Start

First Run - Interactive Setup

When you first run BYOM, you'll see an interactive setup wizard:

byom

The wizard will help you:

  1. Choose your LLM provider (Ollama, LM Studio, OpenRouter, OpenAI, Anthropic, Google)
  2. Configure API keys or local server settings
  3. Select your preferred model
  4. Set approval policies
  5. Create all necessary config files

Provider-Specific Setup

🏠 Ollama (Recommended for Local/Privacy)

# 1. Install Ollama
# Download from: https://ollama.ai

# 2. Pull a model
ollama pull llama3

# 3. Run BYOM (Ollama runs automatically on localhost:11434)
byom

🏠 LM Studio

# 1. Download LM Studio from https://lmstudio.ai
# 2. Download and load a model in the app
# 3. Start the local server (Server tab in LM Studio)
# 4. Run BYOM
byom

☁️ OpenRouter

# 1. Get API key from https://openrouter.ai/keys
# 2. Set environment variable
export OPENROUTER_API_KEY=your-key-here

# 3. Run BYOM
byom

☁️ OpenAI

export OPENAI_API_KEY=your-key-here
byom

☁️ Anthropic

export ANTHROPIC_API_KEY=your-key-here
byom

Basic Usage

# Interactive mode
byom

# Single query mode
byom "What files are in this directory?"

# Specify working directory
byom --cwd /path/to/project

# Show version
byom --version

⚙️ Configuration

BYOM uses a layered configuration system:

  1. System Config: ~/.config/byom-ai/config.toml
  2. Project Config: .byom/config.toml in your project
  3. Environment Variables: Override with env vars

Example Configurations

Ollama (Local)

# ~/.config/byom-ai/config.toml

[model]
name = "llama3"
provider = "openai"  # Ollama uses OpenAI-compatible API
temperature = 0.7

[api]
base_url = "http://localhost:11434/v1"
# No API key needed for local!

[behavior]
approval_policy = "auto"
max_turns = 25

LM Studio (Local)

[model]
name = "local-model"  # Whatever you've loaded
provider = "openai"

[api]
base_url = "http://localhost:1234/v1"
# No API key needed!

[behavior]
approval_policy = "auto"

OpenRouter

[model]
name = "anthropic/claude-3.5-sonnet"
provider = "openai"

[api]
base_url = "https://openrouter.ai/api/v1"
# Set via env: export OPENROUTER_API_KEY=your-key

[behavior]
approval_policy = "auto"

OpenAI

[model]
name = "gpt-4-turbo"
provider = "openai"

# API key via environment variable:
# export OPENAI_API_KEY=your-key

[behavior]
approval_policy = "auto"

🔑 Environment Variables

All providers support environment variables for API keys:

# OpenAI
export OPENAI_API_KEY=sk-...

# Anthropic
export ANTHROPIC_API_KEY=sk-ant-...

# Google
export GOOGLE_API_KEY=...

# OpenRouter
export OPENROUTER_API_KEY=sk-or-...

# Local providers (Ollama, LM Studio) don't need API keys!

📚 Available Models

Ollama (Local)

  • llama3, llama3:70b - Meta's Llama 3
  • codellama, codellama:34b - Code-specialized Llama
  • mistral, mixtral - Mistral AI models
  • deepseek-coder - DeepSeek's coding model
  • qwen2.5-coder - Qwen coding model
  • phi3 - Microsoft's Phi-3
  • And 100+ more at https://ollama.ai/library

OpenRouter (Cloud)

  • anthropic/claude-3.5-sonnet - Claude 3.5 Sonnet
  • openai/gpt-4-turbo - GPT-4 Turbo
  • google/gemini-pro-1.5 - Gemini 1.5 Pro
  • meta-llama/llama-3-70b-instruct - Llama 3 70B
  • mistralai/mixtral-8x7b-instruct - Mixtral 8x7B
  • deepseek/deepseek-coder - DeepSeek Coder
  • Browse all 200+ models at https://openrouter.ai/models

OpenAI

  • gpt-4-turbo, gpt-4, gpt-3.5-turbo

Anthropic

  • claude-3-5-sonnet-20241022, claude-3-opus-20240229, claude-3-haiku-20240307

Google AI

  • gemini-pro, gemini-1.5-pro, gemini-1.5-flash

📖 Usage Examples

Interactive Session

$ byom
    ______  ______  __  ___   ___    ____
   / __ ) \/ / __ \/  |/  /  /   |  /  _/
  / __  |\  / / / / /|_/ /  / /| |  / /
 / /_/ / / / /_/ / /  / /  / ___ |_/ /
/_____/ /_/\____/_/  /_/  /_/  |_/___/

v0.1.0

Welcome to BYOM AI Agents
  version: 0.1.0
  model: llama3 (via Ollama)
  cwd: /Users/you/project
  commands: /help /config /approval /model /exit

[user]> Help me add a feature to this codebase

Available Commands

  • /help - Show help information
  • /config - Display current configuration
  • /model <name> - Switch model
  • /approval <policy> - Change approval policy
  • /stats - Show session statistics
  • /tools - List available tools
  • /mcp - Show MCP server status
  • /save - Save current session
  • /sessions - List saved sessions
  • /resume <id> - Resume a saved session
  • /checkpoint - Create a checkpoint
  • /restore <id> - Restore from checkpoint
  • /clear - Clear conversation history
  • /exit - Exit the program

💰 Cost Comparison

Provider Type Cost Privacy Models
Ollama 🏠 Local FREE ⭐⭐⭐⭐⭐ 100+
LM Studio 🏠 Local FREE ⭐⭐⭐⭐⭐ Any GGUF
OpenRouter ☁️ Cloud Pay-as-you-go ⭐⭐⭐ 200+
OpenAI ☁️ Cloud $$$ ⭐⭐ GPT models
Anthropic ☁️ Cloud $$$ ⭐⭐ Claude models

🤝 Contributing

We welcome contributions! Please see CONTRIBUTING.md for details.

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.

🐛 Reporting Issues

Found a bug? Have a feature request? Please open an issue on GitHub.

⭐ Show Your Support

Give a ⭐️ if this project helped you!


Made with ❤️ by developers, for developers

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

byom_ai_agents-0.1.3.tar.gz (74.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

byom_ai_agents-0.1.3-py3-none-any.whl (86.4 kB view details)

Uploaded Python 3

File details

Details for the file byom_ai_agents-0.1.3.tar.gz.

File metadata

  • Download URL: byom_ai_agents-0.1.3.tar.gz
  • Upload date:
  • Size: 74.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.0

File hashes

Hashes for byom_ai_agents-0.1.3.tar.gz
Algorithm Hash digest
SHA256 154d360049b68515b991fed3759381160bc970d8355752922ab10c895840ae66
MD5 f7bedaf47c2056502cc7f12f0a25de2c
BLAKE2b-256 11ba7251e0370bc94b669efb1b62bbaef8d9b5d127281e02f8f39e8ef24930da

See more details on using hashes here.

File details

Details for the file byom_ai_agents-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: byom_ai_agents-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 86.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.0

File hashes

Hashes for byom_ai_agents-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 bed6aa2e11f57b899050747a60659d5d298f86d7d82578a523042472c861e755
MD5 2f781163107cbd21314cbc302ad4c7d7
BLAKE2b-256 4c120d35303019f07c1d6d4adc1e1e9d2499793ab8a91c40f2c8fb77c64133c0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page