Skip to main content

๐Ÿš… 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. (In root) create virtual environment python -m venv .venv
  2. Activate virtual environment source .venv/bin/activate
  3. Install dependencies uv sync --all-extras --group proxy-dev
  4. uv run prisma generate
  5. prisma generate
  6. Start proxy backend python litellm/proxy/proxy_cli.py

Frontend

  1. Navigate to ui/litellm-dashboard
  2. Install dependencies npm install
  3. Run npm run dev to start the dashboard

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

Download files

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

Source Distribution

litellm-1.93.2.tar.gz (16.0 MB view details)

Uploaded Source

Built Distributions

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

litellm-1.93.2-cp314-cp314-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.14Windows x86-64

litellm-1.93.2-cp314-cp314-musllinux_1_2_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

litellm-1.93.2-cp314-cp314-musllinux_1_2_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

litellm-1.93.2-cp314-cp314-manylinux_2_28_x86_64.whl (20.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

litellm-1.93.2-cp314-cp314-manylinux_2_28_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

litellm-1.93.2-cp314-cp314-macosx_11_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

litellm-1.93.2-cp314-cp314-macosx_10_12_x86_64.whl (19.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

litellm-1.93.2-cp313-cp313-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.13Windows x86-64

litellm-1.93.2-cp313-cp313-musllinux_1_2_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

litellm-1.93.2-cp313-cp313-musllinux_1_2_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

litellm-1.93.2-cp313-cp313-manylinux_2_28_x86_64.whl (20.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

litellm-1.93.2-cp313-cp313-manylinux_2_28_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

litellm-1.93.2-cp313-cp313-macosx_11_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

litellm-1.93.2-cp313-cp313-macosx_10_12_x86_64.whl (19.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

litellm-1.93.2-cp312-cp312-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.12Windows x86-64

litellm-1.93.2-cp312-cp312-musllinux_1_2_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

litellm-1.93.2-cp312-cp312-musllinux_1_2_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

litellm-1.93.2-cp312-cp312-manylinux_2_28_x86_64.whl (20.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

litellm-1.93.2-cp312-cp312-manylinux_2_28_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

litellm-1.93.2-cp312-cp312-macosx_11_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

litellm-1.93.2-cp312-cp312-macosx_10_12_x86_64.whl (19.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

litellm-1.93.2-cp311-cp311-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.11Windows x86-64

litellm-1.93.2-cp311-cp311-musllinux_1_2_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

litellm-1.93.2-cp311-cp311-musllinux_1_2_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

litellm-1.93.2-cp311-cp311-manylinux_2_28_x86_64.whl (20.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

litellm-1.93.2-cp311-cp311-manylinux_2_28_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

litellm-1.93.2-cp311-cp311-macosx_11_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

litellm-1.93.2-cp311-cp311-macosx_10_12_x86_64.whl (19.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

litellm-1.93.2-cp310-cp310-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.10Windows x86-64

litellm-1.93.2-cp310-cp310-musllinux_1_2_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

litellm-1.93.2-cp310-cp310-musllinux_1_2_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

litellm-1.93.2-cp310-cp310-manylinux_2_28_x86_64.whl (20.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

litellm-1.93.2-cp310-cp310-manylinux_2_28_aarch64.whl (20.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

litellm-1.93.2-cp310-cp310-macosx_11_0_arm64.whl (19.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

litellm-1.93.2-cp310-cp310-macosx_10_12_x86_64.whl (19.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file litellm-1.93.2.tar.gz.

File metadata

  • Download URL: litellm-1.93.2.tar.gz
  • Upload date:
  • Size: 16.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for litellm-1.93.2.tar.gz
Algorithm Hash digest
SHA256 c5d5223ef07f36e0886397fb45cc9db4150f86a0c6f6835cee1d5524cab69dfd
MD5 29ff6f54a965caa92362cd6d62e9ef95
BLAKE2b-256 97dd28024c0e4cf2dc6ab1bad59b8357af7f460e952c69526eae28f12ac4ee5e

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: litellm-1.93.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for litellm-1.93.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a783b8b18ed68cb6a3b79d2b00273ec21aef92442e9b2712a50036cb84bfe583
MD5 a53399e79bab655d5d2b3f7ec55c6e6f
BLAKE2b-256 8d45dd9ef72075a83854f852b1bf9a97ec7029a2be9fb4e338fc6623eb09fc90

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8684629be3f7b5f8e2b6e5fe5ea27ff957c63a8d525d81c1460d8436e2e1857
MD5 1d7f4c3f3a6c6207940cc5a7dda3cd8f
BLAKE2b-256 2127341b18a40d4d98a2ac09025c248a3a7edddaf15ce4096ac4a783ff2f70db

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a7f3e5138e307e429bd8fa29cc0c48bb1e2b827792e8f7799ca4c8cff736103
MD5 8f5686293bc87c01cd65fd3b2ae58327
BLAKE2b-256 5bb5c25d7fbe08490d8211bd6b69af23f3a922b68ad8c87c776480b0de64a505

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cacf35cf703b12c54516fc6464a3e08c6dbb1dcfb97239e1f629294fe36a1cba
MD5 87d9f4fcd16278a8c73d0f8ae96bac9e
BLAKE2b-256 50af4016682be48350407837941ad1a1ae8185cca65b102e04e89eee2a2abccb

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c84f7c4acb4e926a79b93145ab23231b300fc687bde7172ef884fc52d6011e0
MD5 cbe75779074daaff1d34e8614d2650b0
BLAKE2b-256 f8202c9c818248ae019b2d496ca41900a9a5651ab05e2400794cd8dc8b89b6d2

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3126c84361606b9fb07fde7d57eccd8a1747304d64c4143e2e5e40ae6e7693fb
MD5 c5ce54297fc24dec4bf9a31102ba6acb
BLAKE2b-256 c42629e9276ce4aa8ed133d9fd5ecc07375017d2228215547c6bbb17ccbc59b4

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 204cb0763fff9285bc87eb2dc0fc59b591999e5d94863d0964f806424d3c0cd6
MD5 bad2ea50daab785dd9f4d38db822e62f
BLAKE2b-256 094aff7a9c000519d2bab362318bf744a24c2500228e5fceaa6ac23acab96fa0

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: litellm-1.93.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for litellm-1.93.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c54a09ab20f94120a9d60a30d9970439dcefa00d2565d190505ff006a80c7a69
MD5 40ff86bc4909c19b714d7ae93982eac3
BLAKE2b-256 d90b4208815b0d666636cbf7afbd571eec3004d3a15d3150a23a9009fc2ce930

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae75a61c9abc827aa3131b7e640c952367a450830bb7c531b426b4ec2bb45f85
MD5 b559a2f8b5ddfae68b4172fbc89f6cf6
BLAKE2b-256 df28040b1853021ed8fd57be19eb2affb024d168951fe7e7abdbad91da3f6f3f

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2edfa14b99bce706b35981703692e3ee631f9b87bf6dc28fb53b574f6480b20
MD5 b808a8fb310e75d75fb10279072cc0f4
BLAKE2b-256 b187bad75146863531172c9dbae189486c7f4425b56a6641b55ab20745316048

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dee1b02b7f52a5a408bf7c8d499f0834e49194651743758a511dcdd926c0b692
MD5 c0205525e306d7f6172f0fb5ef0b6899
BLAKE2b-256 9860cb326e1094f7042f28f9e21543d9f367a8aa25af6915bf4253b77da5c2a2

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a81ceff44c58ef504ab8bd787d03b82618765b9cfd530942386ae6d23c58be94
MD5 3cdfdedaa3d0b0683ebc867c175ebd23
BLAKE2b-256 cbb380ee0143b88e2921f8c8f24c7331478258a8bf25a3d4d4450bd96043403e

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a99ac7c0c1b78acd6bfd1959e9f203dca71fdbceb5f0c8691c2ad8eee450d7d
MD5 4ff01add5f461b0d17c1a5f6fe9de10a
BLAKE2b-256 fadb6ef38a7a2f73d5cc507423954fa535a8546ead375c4c71265c093bdb4e9e

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4071bef03e4c2942cd2ddc752727345b85447d6a7fee1ff5a4f8b92187966b0
MD5 30e7247897010e9d7317015ccaf3266e
BLAKE2b-256 7074e9046cffa69b32b710452480598e418b26a29896ece680c80ec23997fd16

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: litellm-1.93.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for litellm-1.93.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc0d58ccabd22ef7ef44a9e6f7247deb54ae42f5e126e6f00360c2b28b41bc2b
MD5 d1bd69b4e0259fe6edde546b0a9db13c
BLAKE2b-256 16056c0fe2fcf31c260474c55fabe4ecb0e9e1343c9b9132e28589391b2ad33e

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 712c9387419d7b06a10df59973f5e530592d61b2314102b0fa3142f3743f9a9e
MD5 48e1f799e2cd425ac44fd35172f0c036
BLAKE2b-256 ee6d03e931c1cb2d1e1b7a968de21aa9e4db853928200da856c35c940ee6faa9

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8541f1b7fd5c437ad249ad68d0a11f68e5e2866b0649da5fa7d63b595e9b8b22
MD5 9ebdf1ede5a92f3698d16c8bd5608409
BLAKE2b-256 8f8db0eac7ee6d174564f820565c8c9a726ae83dbb8c4d3522daf175b95da002

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f6a5e3907f0a1c9d8ff8d71a6cbac8a592e47a40da3f97167074947b5ba7d11
MD5 241477c2810386a4020cc69045f3c87a
BLAKE2b-256 819184424ce2a25595463e5d24e9cf8949877cd4ce93c0fcbf6486ecd685094f

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 294ad19f356f821ce97a5428d09439be5f38d22b218c73008d8a49e3e42eb145
MD5 82b20bbdcc0d12d85720faebefee70e2
BLAKE2b-256 703ffb70691266a7fd08c202406abea0153e82fa17f134cd9d58e4029cc741db

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 526b7afc037f79dfdd5c607f5085ac597c7fd301a6dedabea40baae899b27f19
MD5 e2a62420d3ed3a8f7d53fe04b60f6dfe
BLAKE2b-256 9e4d5081b39bdb73cab04f8a86294a4534a029cf0434ac6932c7ae8049d55723

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bf532c164ad7cb1b76f2c62afefdcc656b9b296374d075a4150e2ce10bb74c3
MD5 9b46bd3680c96af679af4d154ff309ef
BLAKE2b-256 d00572fd8051f0f2f3c84b90986e6f4551db7c8b190ba3300f111461b7701689

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: litellm-1.93.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for litellm-1.93.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8eaaf780fab9a19234735ef94225172179d15bc28b67ddbec125194249a504b7
MD5 6fe2354ea14abf53fed3dfb95931eb70
BLAKE2b-256 772d81d974f2533cf039afda7e3e0f769dc73dc692c75ec867cf29ec6f41c06f

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cf122399f84f8f04621ed6ef8f276dd6d61f4fab108932ce0e30368de34dd42
MD5 2db906c5178ab320f514f0b1b47154c8
BLAKE2b-256 d998a6bae7c52f09cd03487a040f98eeedb899b3cf3fc541b87c6d051ee92e0d

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2da463d70c9fffbea9532fd000e035328f5266b399a2fb4c6c76b3470478337
MD5 db88482db2bf980b56faaf0409d700c4
BLAKE2b-256 923e18c31b27c7d1271b43bdc8ffbef01bfba68d90248bbe60bb2130dd17e43c

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e5618ef495b2e02299b376ca84ffb2647837aafee478cf3a1be17d47a8f0f73
MD5 c02cf179aec2bfb2aa0dddd4296fddc0
BLAKE2b-256 d7ca559ca0f5e0b99b9f641086ae924c782f8d521d09384fbe9abbe0bddb6e61

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 498f9878ea773305e0638b6159d7e1ef27bb0b9a4292538d6634312d18a4e781
MD5 aa91821144a606ac59fe31dc21045a0f
BLAKE2b-256 5399d8dd58b6840754a13cc2e1111b283aa28cbfc0ccc653a8725050916bb08e

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 845ececc628737909b1422d1af18bd19ae453727a66244aa9da3ca37a3773111
MD5 e89d0765c4694932fbe712701640d758
BLAKE2b-256 0cbdd77184fdaaf57d67d65da91dcfc61c7f656703e7ce4f950e07523e7de4e3

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bd0690efc94357e559de97927fd98437555cd5b5dd832544cfcca87297ccb80
MD5 fbf322c094916062088cf9597b4f0ad9
BLAKE2b-256 64c7cb3f49dc60d57dda7fe368310fd5da2a94ec9b6a746bcf343a61e10bdeda

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: litellm-1.93.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 19.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for litellm-1.93.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f556aa24817052689989e254863bfc50b48e5500999005fce92e6c2d16548f87
MD5 7d8d198edd343ea387c2ae497e5fb9bf
BLAKE2b-256 a0c3f6297826575f2d8dce2b55e6865b015f227c2540e3b1dd94c688e08d57a1

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67e152a87185b47698f4c240290352cbdd18fdcd4285dc8f76f2f79d8186ca9c
MD5 482e525ec8b0551901ab76205c988127
BLAKE2b-256 6de91c7045cbd4d04eaa53fb07e4b7b8b903d77f49a518a2aebbaf18433b9543

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 248ac86bbb03be2a94690e8f31c3de4adf2367f351d1fd1ae43903237cfa365d
MD5 21ce79293dad9203cae0d1ea7e85c3a9
BLAKE2b-256 b8082ba7298d9d61abf5585c679c9f69a237ac4a7ba69965d86982d2023aab68

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78fc2df99e32d9762eee6755a11ad98d405a9f8154994afd841b256d2a7086e4
MD5 e13e3153150d80603a0b744f7564e0da
BLAKE2b-256 c53691126e7e529ee369288d886116fb3d0b6685b64d26a3948629b8f18de059

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8740072e67ca25d4cb2c59e2d1fc49f1d064952c05db175c84eb1e496e9cb85
MD5 d1a6a7b8308f097b866318da3953a1e3
BLAKE2b-256 42a796488b36428f2aa166ee571927c1608f7df591c198f46021db568da59f8e

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d230bbb7818ebad79da838f1b343c36666cb800e0aa80ca95c9ef4c8494278e4
MD5 601ff0e443e7fd87f67fffa5b999470d
BLAKE2b-256 1aadc981a75ec07140221c6645c47414598456b65f3c650f1a77b4a796524161

See more details on using hashes here.

File details

Details for the file litellm-1.93.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for litellm-1.93.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f34309706eb90960d67b05872a3b8314563b81b193b909eaab9d133b82a203fb
MD5 7bbfba8f640d6901ca2c54a44bd7dcf6
BLAKE2b-256 88089506771ea0a3433e683b6ad6f874cd91ede91485044f1d258e66c9266ff8

See more details on using hashes here.

Release history Release notifications | RSS feed

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