Skip to main content

LiteLLM Router integration for Kamiwaza AI

Project description

LiteLLM Router Integration for Kamiwaza AI

This package provides a custom router for LiteLLM that integrates with Kamiwaza AI model deployments. The KamiwazaRouter extends LiteLLM's Router class to enable efficient routing of requests to Kamiwaza-deployed models.

Features

  • Dynamic Model Discovery: Automatically discovers available models from Kamiwaza deployments
  • Multi-Instance Support: Connect to multiple Kamiwaza instances simultaneously
  • Caching: Efficient caching of model lists with configurable TTL
  • Model Pattern Filtering: Filter models based on name patterns (e.g., only use "qwen" or "gemma" models)
  • Static Model Configuration: Support for static model configurations alongside Kamiwaza models
  • Fallback Routing: Automatic fallback between models in case of failures

Installation

pip install litellm-kamiwaza

For running the examples, you'll also need:

pip install python-dotenv

Requirements

  • Python 3.7+
  • litellm>=1.0.0
  • kamiwaza-client>=0.1.0

Usage

Basic Usage

from litellm_kamiwaza import KamiwazaRouter

# Initialize router with automatic Kamiwaza discovery
router = KamiwazaRouter()

# Use the router like a standard litellm Router
response = router.completion(
    model="deployed-model-name",
    messages=[{"role": "user", "content": "Hello, world!"}]
)

Configuration Options

Environment Variables

Router Configuration

# Initialize with specific Kamiwaza URL
router = KamiwazaRouter(
    kamiwaza_api_url="https://my-kamiwaza-server.com/api",
    cache_ttl_seconds=600,  # Cache model list for 10 minutes
    model_pattern="72b",    # Only use models with "72b" in their name
)

# Initialize with multiple Kamiwaza instances
router = KamiwazaRouter(
    kamiwaza_uri_list="https://instance1.com/api,https://instance2.com/api",
    cache_ttl_seconds=300
)

# Initialize with static model list alongside Kamiwaza models
router = KamiwazaRouter(
    kamiwaza_api_url="https://my-kamiwaza-server.com/api",
    model_list=[
        {
            "model_name": "my-static-model",
            "litellm_params": {
                "model": "openai/gpt-4",
                "api_key": "sk-your-api-key",
                "api_base": "https://api.openai.com/v1"
            },
            "model_info": {
                "id": "my-static-model",
                "provider": "static",
                "description": "Static model configuration"
            }
        }
    ]
)

Pattern Matching Examples

You can filter models by name patterns:

# Only use models with "qwen" in their name
router = KamiwazaRouter(
    kamiwaza_api_url="https://my-kamiwaza-server.com/api",
    model_pattern="qwen"
)

# Only use gemma models
router = KamiwazaRouter(
    kamiwaza_uri_list="https://instance1.com/api,https://instance2.com/api",
    model_pattern="gemma"
)

# Only use static models
router = KamiwazaRouter(
    model_pattern="static"
)

Static Models Configuration

For more organized static model configurations, you can create a static_models_conf.py file in your project root:

# static_models_conf.py
from typing import List, Dict, Any, Optional

def get_static_model_configs() -> List[Dict[str, Any]]:
    """Returns a list of statically defined model configurations."""
    return [
        {
            "model_name": "static-custom-model", 
            "litellm_params": {
                "model": "openai/model",
                "api_key": "your-api-key",
                "api_base": "https://your-endpoint.com/v1"
            },
            "model_info": {
                "id": "static-custom-model",
                "provider": "static",
                "description": "Static model configuration"
            }
        }
    ]

The KamiwazaRouter will automatically detect and use these static models.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

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

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

litellm_kamiwaza-0.1.4.tar.gz (21.6 kB view details)

Uploaded Source

Built Distribution

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

litellm_kamiwaza-0.1.4-py3-none-any.whl (19.8 kB view details)

Uploaded Python 3

File details

Details for the file litellm_kamiwaza-0.1.4.tar.gz.

File metadata

  • Download URL: litellm_kamiwaza-0.1.4.tar.gz
  • Upload date:
  • Size: 21.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.16

File hashes

Hashes for litellm_kamiwaza-0.1.4.tar.gz
Algorithm Hash digest
SHA256 a00a7e836f7b6b91bf6af0c2190335e4d75fe994acb8d18c7bdc69a77634f827
MD5 57fe4f290ab8e08758fdf41ea9fc448d
BLAKE2b-256 4e80fcf26d92694ab22536f72388e6733cb96f2c4cdd0510f57a4d669a1613a8

See more details on using hashes here.

File details

Details for the file litellm_kamiwaza-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for litellm_kamiwaza-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1bbf83046ca1e2abbaf816efd01461d48432127af6dbab02dac3edd80da6e271
MD5 2a28bf6c63cb14d349f4051dddbfa7af
BLAKE2b-256 4a2b34394ba24b532ff5c91b1dffb6d0c47a39e229d3977d0e1c3265b40606e2

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