Skip to main content

A flexible gateway for connecting and managing multiple LLM providers

Project description

LLM AnyGate

Python Version License Documentation

A powerful CLI tool that generates LiteLLM proxy projects from simple YAML configurations. Designed to free users from understanding the complexities of the LiteLLM library and quickly create local LLM proxies for use with various AI coding tools.

Overview

LLM AnyGate simplifies the process of setting up LiteLLM proxy servers by providing a simple command-line interface to generate complete, ready-to-run proxy projects with minimal configuration.

Key Features

🚀 Quick Setup - Create a fully configured LiteLLM proxy project with one command
📝 Simple Configuration - Use minimal YAML config instead of complex LiteLLM settings (or use defaults)
🔧 Zero Database - Generated proxies run statelessly without database requirements
🖥️ Cross-Platform - Works on Windows, macOS, and Linux with unified CLI commands
🎯 Production Ready - Generates complete project with config, environment templates, and documentation
📦 PyPI Package - Easy installation via pip from official PyPI repository

Prerequisites

  • Python 3.11 or higher
  • LiteLLM CLI tool (for running generated proxies)
    # Recommended: Install using uv
    uv tool install 'litellm[proxy]'
    
    # Alternative: Install with pip
    pip install 'litellm[proxy]'
    

Installation

From PyPI

pip install llm-anygate

For Development (with Pixi)

# Clone the repository
git clone https://github.com/igamenovoer/llm-anygate.git
cd llm-anygate

# Initialize submodules
git submodule update --init --recursive

# Setup development environment with Pixi
pixi install
pixi shell

Quick Start

Step 1: Generate Proxy Project (Optional Configuration)

Use the CLI to generate a complete LiteLLM proxy project. The model configuration is optional:

# With default configuration (uses gpt-4o with OPENAI_API_KEY)
llm-anygate-cli create --project my-proxy

# With custom configuration file
llm-anygate-cli create \
  --project my-proxy \
  --model-config model-config.yaml \
  --port 4567 \
  --master-key "sk-my-secure-key"

If you want to use a custom model configuration, create a YAML file (model-config.yaml):

model_list:                                # Array of available models for the proxy
  - model_name: gpt-4o                     # Alias name that clients use to request this model
    litellm_params:                        # LiteLLM-specific parameters for this model
      model: openai/gpt-4o                 # Provider prefix + actual model ID
      api_base: https://api.openai.com/v1  # API endpoint URL (optional for OpenAI)
      api_key: os.environ/OPENAI_API_KEY   # References environment variable

  - model_name: claude-3-5-sonnet          # Alias for Anthropic Claude model
    litellm_params:
      model: anthropic/claude-3-5-sonnet-20241022  # Anthropic provider + model version
      api_key: os.environ/ANTHROPIC_API_KEY        # Environment variable reference
      
  - model_name: gemini-pro                 # Alias for Google Gemini model
    litellm_params:
      model: gemini/gemini-pro             # Google provider + model name
      api_key: os.environ/GEMINI_API_KEY   # Environment variable reference

Step 2: Configure Environment

cd my-proxy

# Copy and configure environment variables
cp env.example .env
# Edit .env and add your API keys

Step 3: Start the Proxy Server

# Start specifying the project directory
llm-anygate-cli start --project my-proxy

# Or start from within the project directory
cd my-proxy
llm-anygate-cli start

Step 4: Use the Proxy

Your proxy is now running at http://localhost:4567 with an OpenAI-compatible API:

from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:4567/v1",
    api_key="sk-my-secure-key"
)

response = client.chat.completions.create(
    model="gpt-4o",  # or any model from your config
    messages=[{"role": "user", "content": "Hello!"}]
)

Generated Project Structure

The CLI generates a complete project with:

my-proxy/
├── config.yaml         # Full LiteLLM configuration
├── env.example         # Template for API keys
├── anygate.yaml       # Project configuration for llm-anygate-cli
└── README.md          # Project documentation

CLI Usage

Create Command

llm-anygate-cli create [options]

Options:

  • --project <dir> (required) - Directory to create the project in
  • --model-config <file> (optional) - Path to your model configuration YAML (generates default gpt-4o config if not provided)
  • --port <number> - Port for the proxy server (default: 4567)
  • --master-key <key> - Master key for API authentication (default: sk-dummy)

Start Command

llm-anygate-cli start [options]

Options:

  • --project <dir> (optional) - Project directory (default: current directory)
  • --port <number> (optional) - Override port from project configuration
  • --master-key <key> (optional) - Override master key from project configuration

The start command reads configuration from anygate.yaml in the project directory.

Examples

# Create with default configuration
llm-anygate-cli create --project my-proxy

# Create with custom configuration
llm-anygate-cli create \
  --project /path/to/my-llm-proxy \
  --model-config configs/models.yaml \
  --port 8080 \
  --master-key "sk-production-key-here"

# Start proxy from project directory
cd my-proxy
llm-anygate-cli start

# Start proxy with overrides
llm-anygate-cli start --port 3000 --master-key "sk-new-key"

Model Configuration Format

The model configuration is a simple YAML file with a model_list array:

model_list:
  - model_name: <name-for-your-app>
    litellm_params:
      model: <provider>/<model-id>
      api_base: <api-endpoint>  # Optional
      api_key: os.environ/<ENV_VAR_NAME>
      # Additional parameters as needed

Supported Providers

  • OpenAI and OpenAI-compatible endpoints
  • Anthropic (Claude)
  • Google (Gemini/Vertex)
  • Azure OpenAI
  • Local models (Ollama, etc.)
  • Any provider supported by LiteLLM

Security Notes

  • Generated projects include env.example as a template for API keys
  • Never commit .env files with actual API keys
  • Always use secure master keys in production

Contributing

Contributions are welcome! Please see our Contributing Guide for details.

License

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

Acknowledgments

  • Built with OmegaConf for robust configuration handling
  • Uses Pixi for environment management
  • Generates configurations for LiteLLM
  • Project structure based on magic-context templates

Contact

Support

For questions, issues, or feature requests, please open an issue on GitHub.

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

llm_anygate-1.0.4.tar.gz (67.2 kB view details)

Uploaded Source

Built Distribution

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

llm_anygate-1.0.4-py3-none-any.whl (15.5 kB view details)

Uploaded Python 3

File details

Details for the file llm_anygate-1.0.4.tar.gz.

File metadata

  • Download URL: llm_anygate-1.0.4.tar.gz
  • Upload date:
  • Size: 67.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for llm_anygate-1.0.4.tar.gz
Algorithm Hash digest
SHA256 8e1e71cd93b5c427fc45fc3d123160e998da7655a6fc318f21351b33dfc892e7
MD5 142b6fe588420c3003dfc83c248612de
BLAKE2b-256 8f65f96f96bbb0cdc2c4fdc5fbfa6e017f5fc5d65c5b28fe79494caade21bf16

See more details on using hashes here.

File details

Details for the file llm_anygate-1.0.4-py3-none-any.whl.

File metadata

  • Download URL: llm_anygate-1.0.4-py3-none-any.whl
  • Upload date:
  • Size: 15.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for llm_anygate-1.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 ba433ddd6d517e2f47a89ebb596d6f0b9c8d1ad20a8fecdd9994a474c405353d
MD5 ccf1bd5fbceafc52a0ab733264c59f08
BLAKE2b-256 7939b520a89a9094fcb1cbc5c3dc217dffbf357fc110c4ad2738b4c59fcee5cc

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