Thanks to visit codestin.com
Credit goes to github.com

Skip to content
/ axonhub Public
forked from looplj/axonhub

AxonHub is a modern AI gateway system that provides a unified OpenAI, Anthropic, and AI SDK compatible API

License

Notifications You must be signed in to change notification settings

AAEE86/axonhub

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

AxonHub - All-in-one AI Development Platform


πŸ“– Project Introduction

All-in-one AI Development Platform

AxonHub is an all-in-one AI development platform that provides unified API gateway, project management, and comprehensive development tools. It offers OpenAI, Anthropic, and AI SDK compatible API layers, transforming requests to various AI providers through a transformer pipeline architecture. The platform features comprehensive tracing capabilities, project-based organization, and integrated playground for rapid prototyping, helping developers and enterprises better manage AI development workflows.

AxonHub Architecture

Core Features

  1. Unified API: OpenAI- and Anthropic-compatible interface with automatic API translation lets you use one API format to access any supported model provider.
  2. Tracing / Threads: Thread-aware tracing captures full request timelines for deep observability and faster debugging.
  3. Fine-grained Permission: RBAC-based policies help teams govern access, usage, and data segregation precisely.
  4. Adaptive Load Balancing: Intelligent multi-strategy load balancing automatically selects optimal AI channels based on health, performance, and session consistency.

πŸ“š Documentation

For detailed technical documentation, API references, architecture design, and more, please visit

  • DeepWiki
  • zread

🎯 Demo

Try AxonHub live at our demo instance!

Note:The demo instance currently configures Zhipu and OpenRouter free models.

Demo Account


⭐ Features

πŸ“Έ Screenshots

Here are some screenshots of AxonHub in action:

System Dashboard
System Dashboard
Channel Management
Channel Management
Models
Models
Trace Viewer
Trace Viewer
Request Monitoring
Request Monitoring
Usage Logs
Usage Logs

πŸš€ API Types

API Type Status Description Document
Text Generation βœ… Done Conversational interface Unified API
Image Generation ⚠️ Partial Image generation Image Generation
Rerank βœ… Done Results ranking Unified API
Embedding βœ… Done Vector embedding generation Unified API
Realtime πŸ“ Todo Live conversation capabilities -

🌐 Multi-Provider AI Gateway

Feature Technical Implementation Business Value
Unified API Interface OpenAI compatible standard, zero learning curve Avoid vendor lock-in, reduce migration risk
Automatic Failover Multi-channel retry + load balancing Service interruption time < 100ms
Stream Processing Native SSE support, real-time response 60% user experience improvement

🧡 Threads & Tracing

AxonHub records every request as part of a thread-aware trace without requiring you to adopt any vendor-specific SDK. Bring your existing OpenAI-compatible client, and AxonHub will:

  • Require incoming AH-Trace-Id headers to stitch multiple requests into the same trace. If the header is omitted, AxonHub will still record the request but cannot automatically link it to related activity.
  • Link traces to threads so you can follow the entire conversation journey end to end
  • Capture model metadata, prompt / response spans, and timing information for fast root-cause analysis

Learn more about how tracing works and how to integrate it in the Tracing Guide.

πŸ”§ API Format Support

Format Status Compatibility Modalities
OpenAI Chat Completions βœ… Done Fully compatible Text, Image
OpenAI Responses ⚠️ Partial No previous_response_id Text, Image
Anthropic Messages βœ… Done Fully supported Text
Gemini βœ… Done Fully supported Text, Image
AI SDK ⚠️ Partial Partially supported Text

Key Feature: Use OpenAI API to call Anthropic models, or Anthropic API to call OpenAI models - AxonHub handles automatic API translation!


🏒 Permission Control

Security Feature Implementation
Fine-grained Permission Control Role-based access control (RBAC)
Data Localization Configurable data storage policies
API Key Management JWT + scope control

πŸš€ Quick Start

1-click Deploy to Render

Deploy AxonHub with 1-click on Render for free.


πŸš€ Deployment Guide

πŸ’» Personal Computer Deployment

Perfect for individual developers and small teams. No complex configuration required.

Quick Download & Run

  1. Download the latest release from GitHub Releases

    • Choose the appropriate version for your operating system:
  2. Extract and run

    # Extract the downloaded file
    unzip axonhub_*.zip
    cd axonhub_*
    
    # Add execution permissions (only for Linux/macOS)
    chmod +x axonhub
    
    # Run directly - default SQLite database
    
    # Install AxonHub to system
    sudo ./install.sh
    
    # Start AxonHub service
    ./start.sh
    
    # Stop AxonHub service
    ./stop.sh
  3. Access the application

    http://localhost:8090
    

πŸ–₯️ Server Deployment

For production environments, high availability, and enterprise deployments.

Database Support

AxonHub supports multiple databases to meet different scale deployment needs:

Database Supported Versions Recommended Scenario Auto Migration Links
TiDB Cloud Starter Serverless, Free tier, Auto Scale βœ… Supported TiDB Cloud
TiDB Cloud Dedicated Distributed deployment, large scale βœ… Supported TiDB Cloud
TiDB V8.0+ Distributed deployment, large scale βœ… Supported TiDB
Neon DB - Serverless, Free tier, Auto Scale βœ… Supported Neon DB
PostgreSQL 15+ Production environment, medium-large deployments βœ… Supported PostgreSQL
MySQL 8.0+ Production environment, medium-large deployments βœ… Supported MySQL
SQLite 3.0+ Development environment, small deployments βœ… Supported SQLite

Configuration

AxonHub uses YAML configuration files with environment variable override support:

# config.yml
server:
  port: 8090
  name: "AxonHub"
  debug: false

db:
  dialect: "tidb"
  dsn: "<USER>.root:<PASSWORD>@tcp(gateway01.us-west-2.prod.aws.tidbcloud.com:4000)/axonhub?tls=true"

log:
  level: "info"
  encoding: "json"

Environment variables:

AXONHUB_SERVER_PORT=8090
AXONHUB_DB_DIALECT="tidb"
AXONHUB_DB_DSN="<USER>.root:<PASSWORD>@tcp(gateway01.us-west-2.prod.aws.tidbcloud.com:4000)/axonhub?tls=true"
AXONHUB_LOG_LEVEL=info

For detailed configuration instructions, please refer to configuration documentation.

Docker Compose Deployment

# Clone project
git clone https://github.com/looplj/axonhub.git
cd axonhub

# Set environment variables
export AXONHUB_DB_DIALECT="tidb"
export AXONHUB_DB_DSN="<USER>.root:<PASSWORD>@tcp(gateway01.us-west-2.prod.aws.tidbcloud.com:4000)/axonhub?tls=true"

# Start services
docker-compose up -d

# Check status
docker-compose ps

Virtual Machine Deployment

Download the latest release from GitHub Releases

# Extract and run
unzip axonhub_*.zip
cd axonhub_*

# Set environment variables
export AXONHUB_DB_DIALECT="tidb"
export AXONHUB_DB_DSN="<USER>.root:<PASSWORD>@tcp(gateway01.us-west-2.prod.aws.tidbcloud.com:4000)/axonhub?tls=true"

sudo ./install.sh

# Configuration file check
axonhub config check

# Start service
#  For simplicity, we recommend managing AxonHub with the helper scripts:

# Start
./start.sh

# Stop
./stop.sh

πŸ“– Usage Guide

Unified API Overview

AxonHub provides a unified API gateway that supports both OpenAI Chat Completions and Anthropic Messages APIs. This means you can:

  • Use OpenAI API to call Anthropic models - Keep using your OpenAI SDK while accessing Claude models
  • Use Anthropic API to call OpenAI models - Use Anthropic's native API format with GPT models
  • Use Gemini API to call OpenAI models - Use Gemini's native API format with GPT models
  • Automatic API translation - AxonHub handles format conversion automatically
  • Zero code changes - Your existing OpenAI or Anthropic client code continues to work

1. Initial Setup

  1. Access Management Interface

    http://localhost:8090
    
  2. Configure AI Providers

    • Add API keys in the management interface
    • Test connections to ensure correct configuration
  3. Create Users and Roles

    • Set up permission management
    • Assign appropriate access permissions

2. Channel Configuration

Configure AI provider channels in the management interface. For detailed information on channel configuration, including model mappings, parameter overrides, and troubleshooting, see the Channel Configuration Guide.

3. Model Management

AxonHub provides a flexible model management system that supports mapping abstract models to specific channels and model implementations through Model Associations. This enables:

  • Unified Model Interface - Use abstract model IDs (e.g., gpt-4, claude-3-opus) instead of channel-specific names
  • Intelligent Channel Selection - Automatically route requests to optimal channels based on association rules and load balancing
  • Flexible Mapping Strategies - Support for precise channel-model matching, regex patterns, and tag-based selection
  • Priority-based Fallback - Configure multiple associations with priorities for automatic failover

For comprehensive information on model management, including association types, configuration examples, and best practices, see the Model Management Guide.

4. Create API Keys

Create API keys to authenticate your applications with AxonHub. Each API key can be configured with multiple profiles that define:

  • Model Mappings - Transform user-requested models to actual available models using exact match or regex patterns
  • Channel Restrictions - Limit which channels an API key can use by channel IDs or tags
  • Model Access Control - Control which models are accessible through a specific profile
  • Profile Switching - Change behavior on-the-fly by activating different profiles

For detailed information on API key profiles, including configuration examples, validation rules, and best practices, see the API Key Profile Guide.

5. Claude Code/Codex Integration

See the dedicated guides for detailed setup steps, troubleshooting, and tips on combining these tools with AxonHub model profiles:


6. SDK Usage

For detailed SDK usage examples and code samples, please refer to the Unified API documentation.

πŸ› οΈ Development Guide

For detailed development instructions, architecture design, and contribution guidelines, please see docs/en/guides/development.md.


🀝 Acknowledgments


πŸ“„ License

This project is licensed under multiple licenses (Apache-2.0 and LGPL-3.0). See LICENSE file for the detailed licensing overview and terms.


AxonHub - All-in-one AI Development Platform, making AI development simpler

🏠 Homepage β€’ πŸ“š Documentation β€’ πŸ› Issue Feedback

Built with ❀️ by the AxonHub team

About

AxonHub is a modern AI gateway system that provides a unified OpenAI, Anthropic, and AI SDK compatible API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 59.9%
  • TypeScript 36.9%
  • Shell 1.4%
  • CSS 0.9%
  • JavaScript 0.3%
  • PowerShell 0.3%
  • Other 0.3%