Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

🚅 LiteLLM

LiteLLM AI Gateway

Open Source AI Gateway for 100+ LLMs. Self-hosted. Enterprise-ready. Call any LLM in OpenAI format.

Deploy to Render Deploy on Railway Deploy on AWS Deploy on GCP

LiteLLM Proxy Server (AI Gateway) | Hosted Proxy | Enterprise Tier | Website

PyPI Version GitHub Stars Y Combinator W23 Whatsapp Discord Slack CodSpeed

LiteLLM AI Gateway

What is LiteLLM

LiteLLM is an open source AI Gateway that gives you a single, unified interface to call 100+ LLM providers — OpenAI, Anthropic, Gemini, Bedrock, Azure, and more — using the OpenAI format.

Use it as a Python SDK for direct library integration, or deploy the AI Gateway (Proxy Server) as a centralized service for your team or organization.

Jump to LiteLLM Proxy (LLM Gateway) Docs
Jump to Supported LLM Providers


Why LiteLLM

Managing LLM calls across providers gets complicated fast — different SDKs, auth patterns, request formats, and error types for every model. LiteLLM removes that friction:

  • Unified API — one interface for 100+ LLMs, no provider-specific SDK juggling
  • Drop-in OpenAI compatibility — swap providers without rewriting your code
  • Production-ready gateway — virtual keys, spend tracking, guardrails, load balancing, and an admin dashboard out of the box
  • 8ms P95 latency at 1k RPS (benchmarks)

OSS Adopters

Stripe image Google ADK Greptile OpenHands

Netflix

OpenAI Agents SDK

Features

LLMs - Call 100+ LLMs (Python SDK + AI Gateway)

All Supported Endpoints - /chat/completions, /responses, /embeddings, /images, /audio, /batches, /rerank, /a2a, /messages and more.

Python SDK

uv add litellm
from litellm import completion
import os

os.environ["OPENAI_API_KEY"] = "your-openai-key"
os.environ["ANTHROPIC_API_KEY"] = "your-anthropic-key"

# OpenAI
response = completion(model="openai/gpt-4o", messages=[{"role": "user", "content": "Hello!"}])

# Anthropic  
response = completion(model="anthropic/claude-sonnet-4-20250514", messages=[{"role": "user", "content": "Hello!"}])

AI Gateway (Proxy Server)

Getting Started - E2E Tutorial - Setup virtual keys, make your first request

uv tool install 'litellm[proxy]'
litellm --model gpt-4o
import openai

client = openai.OpenAI(api_key="anything", base_url="http://0.0.0.0:4000")
response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Hello!"}]
)

Docs: LLM Providers

Agents - Invoke A2A Agents (Python SDK + AI Gateway)

Supported Providers - LangGraph, Vertex AI Agent Engine, Azure AI Foundry, Bedrock AgentCore, Pydantic AI

Python SDK - A2A Protocol

from litellm.a2a_protocol import A2AClient
from a2a.types import SendMessageRequest, MessageSendParams
from uuid import uuid4

client = A2AClient(base_url="http://localhost:10001")

request = SendMessageRequest(
    id=str(uuid4()),
    params=MessageSendParams(
        message={
            "role": "user",
            "parts": [{"kind": "text", "text": "Hello!"}],
            "messageId": uuid4().hex,
        }
    )
)
response = await client.send_message(request)

AI Gateway (Proxy Server)

Step 1. Add your Agent to the AI Gateway — set protocolVersion to 1.0 or 0.3 per agent

Step 2. Call Agent via A2A SDK (requires a2a-sdk>=1.1.0)

import httpx
from a2a.client import A2ACardResolver, ClientConfig, ClientFactory
from a2a.types import Message, Part, Role, SendMessageRequest
from a2a.utils.constants import TransportProtocol
from uuid import uuid4

base_url = "http://localhost:4000/a2a/my-agent"  # LiteLLM proxy + agent name
headers = {"Authorization": "Bearer sk-1234"}    # LiteLLM Virtual Key

async with httpx.AsyncClient(headers=headers, timeout=60.0) as http_client:
    resolver = A2ACardResolver(httpx_client=http_client, base_url=base_url)
    agent_card = await resolver.get_agent_card()
    config = ClientConfig(
        httpx_client=http_client,
        streaming=False,
        supported_protocol_bindings=[TransportProtocol.JSONRPC, TransportProtocol.HTTP_JSON],
    )
    client = ClientFactory(config).create(agent_card)

    request = SendMessageRequest(
        message=Message(
            message_id=uuid4().hex,
            role=Role.ROLE_USER,
            parts=[Part(text="Hello!")],
        )
    )
    async for event in client.send_message(request):
        populated = event.ListFields()
        if populated and populated[0][0].name in ("message", "msg"):
            print("".join(getattr(p, "text", "") or "" for p in populated[0][1].parts))

Docs: A2A Agent Gateway

MCP Tools - Connect MCP servers to any LLM (Python SDK + AI Gateway)

Python SDK - MCP Bridge

from mcp import ClientSession, StdioServerParameters
from mcp.client.stdio import stdio_client
from litellm import experimental_mcp_client
import litellm

server_params = StdioServerParameters(command="python", args=["mcp_server.py"])

async with stdio_client(server_params) as (read, write):
    async with ClientSession(read, write) as session:
        await session.initialize()

        # Load MCP tools in OpenAI format
        tools = await experimental_mcp_client.load_mcp_tools(session=session, format="openai")

        # Use with any LiteLLM model
        response = await litellm.acompletion(
            model="gpt-4o",
            messages=[{"role": "user", "content": "What's 3 + 5?"}],
            tools=tools
        )

AI Gateway - MCP Gateway

Step 1. Add your MCP Server to the AI Gateway

Step 2. Call MCP tools via /chat/completions

curl -X POST 'http://0.0.0.0:4000/v1/chat/completions' \
  -H 'Authorization: Bearer sk-1234' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "gpt-4o",
    "messages": [{"role": "user", "content": "Summarize the latest open PR"}],
    "tools": [{
      "type": "mcp",
      "server_url": "litellm_proxy/mcp/github",
      "server_label": "github_mcp",
      "require_approval": "never"
    }]
  }'

Use with Cursor IDE

{
  "mcpServers": {
    "LiteLLM": {
      "url": "http://localhost:4000/mcp/",
      "headers": {
        "x-litellm-api-key": "Bearer sk-1234"
      }
    }
  }
}

Docs: MCP Gateway

Supported Providers (Website Supported Models | Docs)

Provider /chat/completions /messages /responses /embeddings /image/generations /audio/transcriptions /audio/speech /moderations /batches /rerank
Abliteration (abliteration)
AI/ML API (aiml)
AI21 (ai21)
AI21 Chat (ai21_chat)
Aleph Alpha
Amazon Nova
Anthropic (anthropic)
Anthropic Text (anthropic_text)
Anyscale
AssemblyAI (assemblyai)
Auto Router (auto_router)
AWS - Bedrock (bedrock)
AWS - Sagemaker (sagemaker)
Azure (azure)
Azure AI (azure_ai)
Azure Text (azure_text)
Baseten (baseten)
Bytez (bytez)
Cerebras (cerebras)
Clarifai (clarifai)
Cloudflare AI Workers (cloudflare)
Codestral (codestral)
Cohere (cohere)
Cohere Chat (cohere_chat)
CometAPI (cometapi)
CompactifAI (compactifai)
Custom (custom)
Custom OpenAI (custom_openai)
Dashscope (dashscope)
Databricks (databricks)
DataRobot (datarobot)
Deepgram (deepgram)
DeepInfra (deepinfra)
Deepseek (deepseek)
ElevenLabs (elevenlabs)
Empower (empower)
Fal AI (fal_ai)
Featherless AI (featherless_ai)
Fireworks AI (fireworks_ai)
FriendliAI (friendliai)
Galadriel (galadriel)
GitHub Copilot (github_copilot)
GitHub Models (github)
Google - PaLM
Google - Vertex AI (vertex_ai)
Google AI Studio - Gemini (gemini)
GradientAI (gradient_ai)
Groq AI (groq)
Heroku (heroku)
Hosted VLLM (hosted_vllm)
Huggingface (huggingface)
Hyperbolic (hyperbolic)
IBM - Watsonx.ai (watsonx)
Infinity (infinity)
Jina AI (jina_ai)
Lambda AI (lambda_ai)
Lemonade (lemonade)
LiteLLM Proxy (litellm_proxy)
Llamafile (llamafile)
LM Studio (lm_studio)
Maritalk (maritalk)
Meta - Llama API (meta_llama)
Mistral AI API (mistral)
ModelScope (modelscope)
Moonshot (moonshot)
Morph (morph)
Nebius AI Studio (nebius)
NLP Cloud (nlp_cloud)
Novita AI (novita)
Nscale (nscale)
Nvidia NIM (nvidia_nim)
OCI (oci)
Ollama (ollama)
Ollama Chat (ollama_chat)
Oobabooga (oobabooga)
OpenAI (openai)
OpenAI-like (openai_like)
OpenRouter (openrouter)
OVHCloud AI Endpoints (ovhcloud)
Perplexity AI (perplexity)
Petals (petals)
Pinstripes (pinstripes)
Predibase (predibase)
Recraft (recraft)
Replicate (replicate)
Sagemaker Chat (sagemaker_chat)
Sambanova (sambanova)
Snowflake (snowflake)
Text Completion Codestral (text-completion-codestral)
Text Completion OpenAI (text-completion-openai)
Together AI (together_ai)
Topaz (topaz)
Triton (triton)
V0 (v0)
Vercel AI Gateway (vercel_ai_gateway)
VLLM (vllm)
Volcengine (volcengine)
Voyage AI (voyage)
WandB Inference (wandb)
Watsonx Text (watsonx_text)
xAI (xai)
Xinference (xinference)

Read the Docs


Get Started

You can use LiteLLM through either the Proxy Server or Python SDK. Both give you a unified interface to access multiple LLMs (100+ LLMs). Choose the option that best fits your needs:

LiteLLM AI Gateway LiteLLM Python SDK
Use Case Central service (LLM Gateway) to access multiple LLMs Use LiteLLM directly in your Python code
Who Uses It? Gen AI Enablement / ML Platform Teams Developers building LLM projects
Key Features Centralized API gateway with authentication and authorization, multi-tenant cost tracking and spend management per project/user, per-project customization (logging, guardrails, caching), virtual keys for secure access control, admin dashboard UI for monitoring and management Direct Python library integration in your codebase, Router with retry/fallback logic across multiple deployments (e.g. Azure/OpenAI) - Router, application-level load balancing and cost tracking, exception handling with OpenAI-compatible errors, observability callbacks (Lunary, MLflow, Langfuse, etc.)

Stable Release: Use docker images with the -stable tag. These have undergone 12 hour load tests, before being published. More information about the release cycle here

Support for more providers. Missing a provider or LLM Platform, raise a feature request.

Deploy on AWS or GCP with Terraform

Run the LiteLLM proxy as a production-ready componentized stack (gateway, backend, UI on separate services; managed Postgres + Redis + object store) using the published Terraform modules. Both modules are on the public Terraform Registry — no auth needed.

AWS — ECS Fargate + Aurora + ElastiCache + ALB

Launch in AWS CloudShell — opens an in-browser shell, already authenticated to your AWS account. Once inside, run:

git clone https://github.com/BerriAI/litellm.git
cd litellm/terraform/litellm/aws/examples/default
cp terraform.tfvars.example terraform.tfvars   # edit region/tenant/env
terraform init && terraform apply

Module page →

Or call the module from your own root config:

# main.tf
terraform {
  required_version = ">= 1.6.0"
  required_providers {
    aws = { source = "hashicorp/aws", version = "~> 5.60" }
  }
}

provider "aws" {
  region = "us-west-2"
}

module "litellm" {
  source  = "BerriAI/litellm/aws"
  version = "~> 1.89"

  region = "us-west-2"
  azs    = ["us-west-2a", "us-west-2b"]
  tenant = "acme"
  env    = "prod"

  # Production: provide an ACM cert. Without one, set allow_plaintext_alb = true
  # (dev/trial only).
  # acm_certificate_arn = "arn:aws:acm:us-west-2:111122223333:certificate/..."
  allow_plaintext_alb = true
}

output "litellm_url" {
  value = module.litellm.alb_dns_name
}
terraform init
terraform apply

Provider API keys live in AWS Secrets Manager; reference ARNs via gateway_extra_secrets. Full input list and architecture diagram on the registry page.

GCP — Cloud Run + Cloud SQL + Memorystore + HTTPS LB

Open in Cloud Shell

Real 1-click. Opens Cloud Shell, clones this repo, and walks you through terraform apply via a built-in DeployStack tutorial — pick the project, the tutorial sets up the Artifact Registry remote repo, writes terraform.tfvars from your answers, and runs apply.

Module page →

To call the module from your own config instead, Cloud Run can't pull from ghcr.io directly, so first set up a one-time Artifact Registry remote repo backed by GHCR:

gcloud artifacts repositories create litellm \
  --location=us-central1 \
  --repository-format=docker \
  --mode=remote-repository \
  --remote-docker-repo=https://ghcr.io \
  --project=my-gcp-project

Then:

# main.tf
terraform {
  required_version = ">= 1.6.0"
  required_providers {
    google      = { source = "hashicorp/google",      version = "~> 6.10" }
    google-beta = { source = "hashicorp/google-beta", version = "~> 6.10" }
  }
}

provider "google"      { project = "my-gcp-project"; region = "us-central1" }
provider "google-beta" { project = "my-gcp-project"; region = "us-central1" }

module "litellm" {
  source  = "BerriAI/litellm/google"
  version = "~> 1.89"

  project_id = "my-gcp-project"
  region     = "us-central1"
  tenant     = "acme"
  env        = "prod"

  # Replace my-gcp-project with your GCP project ID (same value as project_id above).
  image_registry = "us-central1-docker.pkg.dev/my-gcp-project/litellm/berriai"

  # Production: provide DNS already pointing at the LB IP for Google-managed certs.
  # Without one, set allow_plaintext_lb = true (dev/trial only).
  # lb_domains         = ["proxy.example.com"]
  allow_plaintext_lb = true
}

output "litellm_url" {
  value = module.litellm.load_balancer_url
}
terraform init
terraform apply

Provider API keys live in Secret Manager; reference resource IDs (e.g. projects/my-gcp-project/secrets/openai-api-key) via gateway_extra_secrets. Full input list and architecture diagram on the registry page.

Both stacks include

  • The full componentized split (gateway / backend / UI as independent services)
  • Managed Postgres (writer + reader) and Redis
  • Versioned object store for proxy state + file uploads
  • An auto-generated LITELLM_MASTER_KEY in your cloud's secret manager
  • A one-off migration job that runs prisma migrate deploy before the proxy starts
  • The same proxy_config surface as the Helm chart — pass YAML as a typed map

The Terraform modules live at terraform/litellm/aws/ and terraform/litellm/gcp/ in this repo; the registry entries are read-only mirrors updated on each release.

Run in Developer Mode

Services

  1. Setup .env file in root
  2. Run dependent services docker-compose up db prometheus

Backend

  1. Run make bootstrap
  2. Start proxy backend: uv run python litellm/proxy/proxy_cli.py

Frontend

  1. Navigate to ui/litellm-dashboard (dependencies were already installed w/ make bootstrap)
  2. Start dashboard: npm run dev

Verify Docker Image Signatures

All LiteLLM Docker images published to GHCR are signed with cosign. Every release is signed with the same key introduced in commit 0112e53.

Verify using the pinned commit hash (recommended):

A commit hash is cryptographically immutable, so this is the strongest way to ensure you are using the original signing key:

cosign verify \
  --key https://raw.githubusercontent.com/BerriAI/litellm/0112e53046018d726492c814b3644b7d376029d0/cosign.pub \
  ghcr.io/berriai/litellm:<release-tag>

Verify using a release tag (convenience):

Tags are protected in this repository and resolve to the same key. This option is easier to read but relies on tag protection rules:

cosign verify \
  --key https://raw.githubusercontent.com/BerriAI/litellm/<release-tag>/cosign.pub \
  ghcr.io/berriai/litellm:<release-tag>

Replace <release-tag> with the version you are deploying (e.g. v1.83.0-stable).


Enterprise

For companies that need better security, user management and professional support

Get an Enterprise License Talk to founders

This covers:

  • Features under the LiteLLM Commercial License:
  • Feature Prioritization
  • Custom Integrations
  • Professional Support - Dedicated discord + slack
  • Custom SLAs
  • Secure access with Single Sign-On

Contributing

We welcome contributions to LiteLLM! Whether you're fixing bugs, adding features, or improving documentation, we appreciate your help.

Quick Start for Contributors

This requires uv to be installed.

git clone https://github.com/BerriAI/litellm.git
cd litellm
make install-dev    # Install development dependencies
make format         # Format your code
make lint           # Run all linting checks
make test-unit      # Run unit tests
make format-check   # Check formatting only

For detailed contributing guidelines, see CONTRIBUTING.md.

📖 Contributing to documentation? The LiteLLM docs have moved to a separate repository: BerriAI/litellm-docs. Please open doc PRs there. Docs are served at docs.litellm.ai.

Code Quality / Linting

LiteLLM follows the Google Python Style Guide.

Our automated checks include:

  • Black for code formatting
  • Ruff for linting and code quality
  • MyPy for type checking
  • Circular import detection
  • Import safety checks

All these checks must pass before your PR can be merged.

Support / talk with founders

Contributors

Release files for litellm-dev 1.97.0.dev6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for litellm-dev 1.97.0.dev6
File Size Uploaded
litellm_dev-1.97.0.dev6.tar.gz 17.9 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for litellm-dev 1.97.0.dev6
File
litellm_dev-1.97.0.dev6-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
litellm_dev-1.97.0.dev6-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
litellm_dev-1.97.0.dev6-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
litellm_dev-1.97.0.dev6-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
litellm_dev-1.97.0.dev6-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
litellm_dev-1.97.0.dev6-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
litellm_dev-1.97.0.dev6-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
litellm_dev-1.97.0.dev6-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
litellm_dev-1.97.0.dev6-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
litellm_dev-1.97.0.dev6-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
litellm_dev-1.97.0.dev6-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
litellm_dev-1.97.0.dev6-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
litellm_dev-1.97.0.dev6-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
litellm_dev-1.97.0.dev6-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
litellm_dev-1.97.0.dev6-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
litellm_dev-1.97.0.dev6-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
litellm_dev-1.97.0.dev6-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
litellm_dev-1.97.0.dev6-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
litellm_dev-1.97.0.dev6-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
litellm_dev-1.97.0.dev6-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
litellm_dev-1.97.0.dev6-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
litellm_dev-1.97.0.dev6-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
litellm_dev-1.97.0.dev6-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
litellm_dev-1.97.0.dev6-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
litellm_dev-1.97.0.dev6-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
litellm_dev-1.97.0.dev6-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
litellm_dev-1.97.0.dev6-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
litellm_dev-1.97.0.dev6-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
litellm_dev-1.97.0.dev6-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
litellm_dev-1.97.0.dev6-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
litellm_dev-1.97.0.dev6-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
litellm_dev-1.97.0.dev6-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
litellm_dev-1.97.0.dev6-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
litellm_dev-1.97.0.dev6-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
litellm_dev-1.97.0.dev6-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 940.8 MB

Release files / litellm_dev-1.97.0.dev6.tar.gz

Download URL litellm_dev-1.97.0.dev6.tar.gz
Size 17.9 MB
Tags Source
SHA-256 checksum
How to use checksums
eafcd5020e27abdcc3e49d2e19c0f70096649b14a530b8f9e20845e91b836dc0
BLAKE2b-256 checksum
How to use checksums
e25e10b85d4e64d0d574736cc3a3aa5ea90d6a13870234f18c390eb0c28714c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp314-cp314-win_amd64.whl

Download URL litellm_dev-1.97.0.dev6-cp314-cp314-win_amd64.whl
Size 25.3 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
8b57bc44ec931198c13d8a354409bea1a323435e70bac6cb377318cb5e6ba661
BLAKE2b-256 checksum
How to use checksums
a9a8ac10bd1040de18f33cb4dca4b6ff370fecbf980aebfc46f016fffb180d92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp314-cp314-musllinux_1_2_x86_64.whl
Size 27.1 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f868b16b87b2df6f791715acceeae04ecaa1a5721ef4abccb410185be30d8c19
BLAKE2b-256 checksum
How to use checksums
fc2c0e231660dfbab5d8e128ab0704b6588a904fc0cca8e7d5f2bc97d5a42a5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp314-cp314-musllinux_1_2_aarch64.whl
Size 26.8 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9260d8133b49c8a0ca74aaebe492ed0dd051aaf7796e9932f29b617cb08355f9
BLAKE2b-256 checksum
How to use checksums
e1e85a5012734d05d052f66022e2ea5541ad9fa9e35abced7a998ed3513a1cab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp314-cp314-manylinux_2_28_x86_64.whl
Size 26.6 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1de935f19480cba8a6573f9850a38275167341aeb02424d1586f1c9b48d6ddfd
BLAKE2b-256 checksum
How to use checksums
c3a75f28098b71bb1052f499a1c012dd5ccb061fbc7500462d182b481f958091
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp314-cp314-manylinux_2_28_aarch64.whl
Size 26.8 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
cf3752983deabe4abd72fed08f1951560d8653e1f2eda802e7c7dcbf31721cbf
BLAKE2b-256 checksum
How to use checksums
d9ae0d4b73c877dddcac96c89a04a934bc8770d63dd4650594a866da39aad53f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp314-cp314-macosx_11_0_arm64.whl

Download URL litellm_dev-1.97.0.dev6-cp314-cp314-macosx_11_0_arm64.whl
Size 25.8 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
be1991250ff99de27a464d6f8f8359225d7fe93c730a01bcab3412677b017021
BLAKE2b-256 checksum
How to use checksums
ecbe91555160facf1ee10a2a0dd875b7c031eb3148c20092551b0982c385f6dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp314-cp314-macosx_10_12_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp314-cp314-macosx_10_12_x86_64.whl
Size 26.1 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
964d67e23f108bd729eb0c575cc719d9eb408d5cf49c6155150a964011e35afd
BLAKE2b-256 checksum
How to use checksums
91f19deed88cd921821146089543310ee69db400f684f763e0cf907fe2351aaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp313-cp313-win_amd64.whl

Download URL litellm_dev-1.97.0.dev6-cp313-cp313-win_amd64.whl
Size 25.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
9306050e68088a996637343e0fcf9cfc31322fbb8ca4a9613c88ada739542040
BLAKE2b-256 checksum
How to use checksums
03e2320734172199a2f6d3a4c115267b48ddfe5354b21416df8565f424e516e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp313-cp313-musllinux_1_2_x86_64.whl
Size 27.1 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
afb637c5ef2f3035e06aec328f31d74ebebe68a67cba5c8fe186ef7103622666
BLAKE2b-256 checksum
How to use checksums
c4b3e223c99a23f9c535bcf09183edfee755057ca7df8084f66bc98d6bea158d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp313-cp313-musllinux_1_2_aarch64.whl
Size 26.9 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
69ba924aad5b5ff3d82a42845b4ee0efd7ea32b447dc92f37f7439418b4da654
BLAKE2b-256 checksum
How to use checksums
c267a5c1f1e0a2589ff626ff1a4e335889a54e8b9379bda8a51091c398634949
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp313-cp313-manylinux_2_28_x86_64.whl
Size 26.6 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c209c5d2cde1355578ffabc7b77144849be9360f1d89531a3f3f07d63919d86a
BLAKE2b-256 checksum
How to use checksums
c8cbd93df496152733b7556de7dbee1ed3c869d5cea790a1d944ab6692f47782
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp313-cp313-manylinux_2_28_aarch64.whl
Size 26.8 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c69a1a39f5c7dc9eb80e1ff368b78082396562cd274e0b0d8aa63c49fb2f90c4
BLAKE2b-256 checksum
How to use checksums
f2e19694c5f51f32c2b4a3cdf9334e24ff0e8af3fa53a7cc62cc3d44a25407ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp313-cp313-macosx_11_0_arm64.whl

Download URL litellm_dev-1.97.0.dev6-cp313-cp313-macosx_11_0_arm64.whl
Size 25.8 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e35f21202bd6ea2a8369a28975d3ff249afbeb0beb6b22140a29b69779760660
BLAKE2b-256 checksum
How to use checksums
e8f3862a79092a99fa7649a6ac6b673dd192b2ac35835eeacedd7c46fdeb7ad9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp313-cp313-macosx_10_12_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp313-cp313-macosx_10_12_x86_64.whl
Size 26.1 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
fab49d1efb4c736ad72cfc6d1aeac1baa0d2607cd4c540c43f819a7dd1ffdbe3
BLAKE2b-256 checksum
How to use checksums
10865110cce0858d48d2f5504b613b7295bb2328d4128d5fb16eea2bd3f28806
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp312-cp312-win_amd64.whl

Download URL litellm_dev-1.97.0.dev6-cp312-cp312-win_amd64.whl
Size 25.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
80b05ac77d0a06d14ede2e429a87df0b3428c099661c5530be94a2c96ee7625c
BLAKE2b-256 checksum
How to use checksums
b2315000f3ae3f0c35e1247c4015281bc11616e1c3abf0486527711a93f71089
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp312-cp312-musllinux_1_2_x86_64.whl
Size 27.1 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d7098ac257e44139b155dcb1703e51ef7ba60d0887911e13fe4ff094dba065dd
BLAKE2b-256 checksum
How to use checksums
aac46ceb52b6ee2d4a56c3053a5f4ea91cfac90de8ab90023ee1e387e5521208
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp312-cp312-musllinux_1_2_aarch64.whl
Size 26.9 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ed19b6d73ea8ceb3c49b2e86619157a82803f28d6b15ab55e8e64e70291f97a7
BLAKE2b-256 checksum
How to use checksums
82204b9438ac7c7067eaa0850ef1c35ab63af480642a87ef39fce77f61797bc8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp312-cp312-manylinux_2_28_x86_64.whl
Size 26.6 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d7fa037d6878fc5880aaf9dbce78ccdb22030cb175ce694906e89b6758485f6e
BLAKE2b-256 checksum
How to use checksums
dc1978ac763411391b6531248eea360b789bdafea40b20ef4747201318195fd8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp312-cp312-manylinux_2_28_aarch64.whl
Size 26.8 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e1c420bd770f87df519955177860bacb2dee26ad7b26209aa053146e714868a3
BLAKE2b-256 checksum
How to use checksums
f4eb5e27ad032f659c3b312aade98418a8ad5711d41a4f3e59f829113f5a5a52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp312-cp312-macosx_11_0_arm64.whl

Download URL litellm_dev-1.97.0.dev6-cp312-cp312-macosx_11_0_arm64.whl
Size 25.8 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9f3b13430a4ba52ce3f2d11928cb65840734755058e1d8afdf5d7687a783af61
BLAKE2b-256 checksum
How to use checksums
561d2af0715c9cfb1213238b935dbf6171aaabcfa44de3e48dfda3eb42298e0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp312-cp312-macosx_10_12_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp312-cp312-macosx_10_12_x86_64.whl
Size 26.1 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
dbb296575a2b66dc1c1f66241209e1456d534697c4b7771af0b1a5ad210e023e
BLAKE2b-256 checksum
How to use checksums
2c9ccaee2b362b3f015f591bfd6dc367388f8db019d7be6037666182857f7d83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp311-cp311-win_amd64.whl

Download URL litellm_dev-1.97.0.dev6-cp311-cp311-win_amd64.whl
Size 25.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
7ada209b9eb8f0cf557a5f5c0453caf3207cd4ed9bd3024d42c6d885078e1153
BLAKE2b-256 checksum
How to use checksums
0842cbbd68a05206cf98aef733e01994d1fbb1142d2b8ffec575ebd0246d20d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp311-cp311-musllinux_1_2_x86_64.whl
Size 27.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
85960aff828bdb95efec3fb405c88c1eba56ad63059830c941a727c7cc006fb8
BLAKE2b-256 checksum
How to use checksums
6c9c5e01d4f497dd7b054bd0ecde3b53e4eecb534b511242a2387b400e23eead
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp311-cp311-musllinux_1_2_aarch64.whl
Size 26.9 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e25083453856bdad8c822114dd44a55ca8cd1b1f0c922dc0486fafa9cfa01ce4
BLAKE2b-256 checksum
How to use checksums
b7d05adac3252b2ca081d40206a5460874f5f396a5247f683a594762e8ef93c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp311-cp311-manylinux_2_28_x86_64.whl
Size 26.6 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3ef86c420f3e0a03cdd7f932ddaf32d739815a4a488e06188e31a1c8b372f194
BLAKE2b-256 checksum
How to use checksums
2252c1f7b6d0cefb3e7f322cc3147bc77e06fb6fc6781fd43a31261d6d34dacb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp311-cp311-manylinux_2_28_aarch64.whl
Size 26.8 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ec8d961f5774ff65202d5a2cda8a1001afae353682363a4ee877d9e9598a0b03
BLAKE2b-256 checksum
How to use checksums
482fa7a8ef54dfaf9f809a656cf6417e150168f3ae0fd579ba7f3443d77eb4cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp311-cp311-macosx_11_0_arm64.whl

Download URL litellm_dev-1.97.0.dev6-cp311-cp311-macosx_11_0_arm64.whl
Size 25.9 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e237908f790ce1ae03f3f0c4ed3c2bc5f2a877023d710a34c4b7bac5fe794813
BLAKE2b-256 checksum
How to use checksums
88e3f5cbc63403370eb64a260ee192434fb8988a82f7a9823ca9277f3b2583d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp311-cp311-macosx_10_12_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp311-cp311-macosx_10_12_x86_64.whl
Size 26.1 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
4a3170aaf238ce0ad2f3b6e23f2b8f82f2efafc02b9f9e39ae89959a68376a7b
BLAKE2b-256 checksum
How to use checksums
6b9822ffbfb45eaf8dadd95e889c72e67151da49de9bcd3eef9fbc968f47be06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp310-cp310-win_amd64.whl

Download URL litellm_dev-1.97.0.dev6-cp310-cp310-win_amd64.whl
Size 25.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
d1a931992b12ba53c4e53100bdb55ce3a864cd94ad19f3eca218b12bd410748f
BLAKE2b-256 checksum
How to use checksums
a5e8b76e039efbdf4247bfd1225ac08023d9756ba86ff1c7b1a05eaddc55fbce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp310-cp310-musllinux_1_2_x86_64.whl
Size 27.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
53ed5c296b28cd0024e3b325d792178a2ec4da0bc1642e37ea1182a7dea4129d
BLAKE2b-256 checksum
How to use checksums
b55e4f2446b9e5297a00d2dfd585a576e6146ae36f236c9ec3eec15b2e854233
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp310-cp310-musllinux_1_2_aarch64.whl
Size 26.9 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
680afefba1de190a37603b948916f2a9d292896dcd6b9537ed9a10f73b4c1a18
BLAKE2b-256 checksum
How to use checksums
218bcaec6cfe530f70abc4db15e803f4f4f6e44db95c85816a731181c76133e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp310-cp310-manylinux_2_28_x86_64.whl
Size 26.6 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7b2359e3ad89f8f9dceddd157e85f6c0a07477992326494ba257366cfa29fec2
BLAKE2b-256 checksum
How to use checksums
216aa68e601766c921a92e20a4bf69a859883145eaf9344b318db37cac147876
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL litellm_dev-1.97.0.dev6-cp310-cp310-manylinux_2_28_aarch64.whl
Size 26.8 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a9b3e588c3357d162f594061ee8e9f6f2a5b9ae4bd85ba44f9d8b85d5cb02899
BLAKE2b-256 checksum
How to use checksums
a79ee98263447c56591ce4363e3d67f5ff6024d761c70f3b3946dfc22432f4d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp310-cp310-macosx_11_0_arm64.whl

Download URL litellm_dev-1.97.0.dev6-cp310-cp310-macosx_11_0_arm64.whl
Size 25.9 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
52df9fedfddb341b75840cd16ce64492fedcf96e68a036bcb81f352a71cb748d
BLAKE2b-256 checksum
How to use checksums
dc244549044b8c73c86a8241d4602b692a3f8d08d845df06c53d7514db5fc3b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release files / litellm_dev-1.97.0.dev6-cp310-cp310-macosx_10_12_x86_64.whl

Download URL litellm_dev-1.97.0.dev6-cp310-cp310-macosx_10_12_x86_64.whl
Size 26.1 MB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
bc16f1966913176df5803f6036a098a2f845df4621effe94bf1e53856b845ac6
BLAKE2b-256 checksum
How to use checksums
88c7d8052524973bf85ad1c7c421b175aa3d8fe03b7e4f2f571b831595170874
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Release history Release notifications | RSS feed

This release

1.97.0.dev6 This release

36 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page