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. 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

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.94.3.tar.gz (16.3 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.94.3-cp314-cp314-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.14Windows x86-64

litellm-1.94.3-cp314-cp314-musllinux_1_2_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

litellm-1.94.3-cp314-cp314-musllinux_1_2_aarch64.whl (20.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

litellm-1.94.3-cp314-cp314-manylinux_2_28_x86_64.whl (20.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

litellm-1.94.3-cp314-cp314-manylinux_2_28_aarch64.whl (20.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

litellm-1.94.3-cp314-cp314-macosx_11_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

litellm-1.94.3-cp314-cp314-macosx_10_12_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

litellm-1.94.3-cp313-cp313-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.13Windows x86-64

litellm-1.94.3-cp313-cp313-musllinux_1_2_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

litellm-1.94.3-cp313-cp313-musllinux_1_2_aarch64.whl (20.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

litellm-1.94.3-cp313-cp313-manylinux_2_28_x86_64.whl (20.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

litellm-1.94.3-cp313-cp313-manylinux_2_28_aarch64.whl (20.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

litellm-1.94.3-cp313-cp313-macosx_11_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

litellm-1.94.3-cp313-cp313-macosx_10_12_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

litellm-1.94.3-cp312-cp312-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.12Windows x86-64

litellm-1.94.3-cp312-cp312-musllinux_1_2_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

litellm-1.94.3-cp312-cp312-musllinux_1_2_aarch64.whl (20.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

litellm-1.94.3-cp312-cp312-manylinux_2_28_x86_64.whl (20.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

litellm-1.94.3-cp312-cp312-manylinux_2_28_aarch64.whl (20.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

litellm-1.94.3-cp312-cp312-macosx_11_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

litellm-1.94.3-cp312-cp312-macosx_10_12_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

litellm-1.94.3-cp311-cp311-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.11Windows x86-64

litellm-1.94.3-cp311-cp311-musllinux_1_2_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

litellm-1.94.3-cp311-cp311-musllinux_1_2_aarch64.whl (20.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

litellm-1.94.3-cp311-cp311-manylinux_2_28_x86_64.whl (20.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

litellm-1.94.3-cp311-cp311-manylinux_2_28_aarch64.whl (20.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

litellm-1.94.3-cp311-cp311-macosx_11_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

litellm-1.94.3-cp311-cp311-macosx_10_12_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

litellm-1.94.3-cp310-cp310-win_amd64.whl (20.3 MB view details)

Uploaded CPython 3.10Windows x86-64

litellm-1.94.3-cp310-cp310-musllinux_1_2_x86_64.whl (20.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

litellm-1.94.3-cp310-cp310-musllinux_1_2_aarch64.whl (20.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

litellm-1.94.3-cp310-cp310-manylinux_2_28_x86_64.whl (20.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

litellm-1.94.3-cp310-cp310-manylinux_2_28_aarch64.whl (20.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

litellm-1.94.3-cp310-cp310-macosx_11_0_arm64.whl (20.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

litellm-1.94.3-cp310-cp310-macosx_10_12_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for litellm-1.94.3.tar.gz
Algorithm Hash digest
SHA256 2098c818ce5d8139eb46a851f26d1ac5caac1502e19d5223af4930b31682c461
MD5 ce735592f841507043e73e6f1c362abd
BLAKE2b-256 89100a308d651ae972d8c59f367096812f27ef13aef7ae465b8571903e066628

See more details on using hashes here.

File details

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

File metadata

  • Download URL: litellm-1.94.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 20.3 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.94.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 de2b3cc1a5cb5b9c7e393b55a0da58cdbe46f0b373b215d4422e30b2d5dec29b
MD5 d3dd1ad5ad8425b1b01ee3fe3a8bee56
BLAKE2b-256 ee5b1019f2d555aff184e2cce8db6f5e8aeb92b109a42965bd29af1bdfa14c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f0529505cd5cceed220f89b311f4403fa076beae18069e9df31c4e59b226871
MD5 70cfd5fa1523b4d3211910fb5464d846
BLAKE2b-256 f8bd1251e58da23c8eef21d915f5d74ac9ce926ec1664133be1675c1cab6b973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1594d231e005f6a99e319310f2e3c0d33f26d8c746e90ec42fedc2b413f16573
MD5 3e63274f52b456990efb39d7dbd32a10
BLAKE2b-256 9f419b30e0a674ca5d704b53edc5338072c2475293855a0d5e18cf5f2223f70c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ec0ff6e81acbfa85b4af90f9460c46a7872a28d53aaeee956ad7d289f47edc4
MD5 8db48c14e77e6c3d6d8e037c9509cbad
BLAKE2b-256 3b90c34786551b4367a72c6a353d1cfb65a8ebb2f61aca253c57a77c6b84d0b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ae267172e1c615346523faf6de6cac2f21937bda2e15e0af8c5d3291476a4e5
MD5 ca8d10fcd159509a545d0834ffef7fd2
BLAKE2b-256 0819e7d0feaf69f2ebb4f84542ada0c32809bed65772f80584bb39d58a2db404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8eedd2dc2e504ea8452392c4c66c102ed7ccd204307d72420fd073552b59ea9
MD5 3fe70e93024be5a30258984055a9263a
BLAKE2b-256 6f4173ca9363742b362beafae4dd2af30cc642b82b5254e579f13170cf8938f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14f06f1486aa4eef0684a2088539548e3647495fa119edc2b8145c5cfee3ca24
MD5 bdccea8d107b3316bc65eb13b2a581af
BLAKE2b-256 d4592f58df27232c4d8f6bdbcfb1864fcb520c72d2bb93f6d1e97267790a3e1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: litellm-1.94.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 20.3 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.94.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 584b705ece98e7b7a2fc3cf4b720711d0b786e4d131de5c4469c34cabc3f55e0
MD5 dc5d810ca5b0af6eff0032fc1890699f
BLAKE2b-256 e9d79dd2bb3e6bf9746acc613f36992a9e77b5a8eed80e533d580f13a784b8b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccf58062430fdfd53d1ebb02d55d2316ad1068005dbb4186a522039077489f9b
MD5 d4d295de7b8aa9df18ad47c8b1f1ccdd
BLAKE2b-256 4324d1d7f3bc3cafe4667a591ee88ea24737c470245e2f838d9d31feb33cd309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b7ef13f56e167c76ca5dfc2e6bba8e52faf6371a540c00585ee7cff81af4ba0
MD5 40bea6718d17b5c9586cd62778b9ef56
BLAKE2b-256 f270bef380faf99a0caf1a820e082434dd2ac5389eb05ef3e1a0737fa451e307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4255bc09a27d99e8c1526baf76ff307e16d3543f51fda9c87c51a71c99c8ff7
MD5 89d2fd9f672b2340d27d06563d451076
BLAKE2b-256 d6f154451a42d04e64b50af6a3afba2cc824e33df1a30c5e847f796a6c74b45d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8913c9f10ef3fb1baf4ab16fc77e110f92c1c0a9a16fa0f86d1b90b417e063f
MD5 932fade2a9b765df0a353f15d5f73150
BLAKE2b-256 7266158d9326060f0750b1dd5e60f737e8c8314f1623ed3d498e562dbe83ebcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c526656e85ee1be21038c75774c094b97e7439e649dc13f61cb434700199990a
MD5 bbb7fc4a1755c7d20a328211610514f1
BLAKE2b-256 b929821e17404e3330b4757ae5160e3bd2b429bc0e2c4db6ff7aa90f2d45ad0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45b9f56f02a5417b249ecaf6f01f2531e744b17b701aaea441741ed9431ba35e
MD5 f0af71b65842700fc6d64720536cc513
BLAKE2b-256 08c838589ddcf4cfb15273e36a9ce1e01c974a7cac942989c0effef496323d5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: litellm-1.94.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 20.3 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.94.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 deac3f3efdb5373729f37f612d2469696bbc928baef5f7c80ae7a2b0940b7939
MD5 9a78e3d5804dc8b4095fe6f16df5113f
BLAKE2b-256 63343285932f3562687e17c15ce7e01e708182ef1bb2470021cf92f803a681b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fafb59618a85f3c96d38a123ac53187c75e722a6b4e34d305063661262f62ea8
MD5 82d013143e252efb5c051e3d5c2f18ac
BLAKE2b-256 550e3d45bc6d41d457266636ca3c851b225b0a4017d9178b8786694f15d743b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ddb60a439cc361e69bb4f550a78d1656c8edad6753f8fece14f60bbd0fcd054
MD5 9be1dd11622e7dfe1c5f7509369f913c
BLAKE2b-256 6f198b3a38084ffc35c0238375994473545883f6113e4eb5752c45566139d1c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2027a4e492fd85702ffdbcc43be770a450c521b8c8c0c995e6f7d2fb6df1d49
MD5 5d581a80f2401931192cb9a2b3dc65c8
BLAKE2b-256 1c85762519652612d651538092ad5e11ffb0103263d08371f660fa78da60efa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1017f29a6f72a16ef1b026208b3e52c7197b91ae848b396c817bfb051f86c300
MD5 17e319a3e3e30ad80adc38751cea36d5
BLAKE2b-256 30546964d9523f758bcec4d9611bd721cc5ffee710cdc3170e9cbde40207056c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6ba10b699165a9a46811f2d3abe92967dc1c2d16f972d1057dae5c5c9cd460b
MD5 ab2a6fb549ec494e60eedee519d23f18
BLAKE2b-256 841c29c4415a9abc2e38c529a6f8946fbc8d4e94cc70453f41e7b71a2baaaaf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68b5b8c4ec8d51e4a2d02cf5405b6dd85be06b8ccf0205b7b0b30c1d3c02aebe
MD5 fb68807e2d6682420cdf7fba5f437945
BLAKE2b-256 e5b9e31d42b83966727a99c1518e19c776ba1ac1fe7e9c9cf8fd50196f18d99f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: litellm-1.94.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 20.3 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.94.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a21e3f5cc72b18bd424009e5ad9addcee5ebdd726c7b26cadb4c87f865f5f1b
MD5 6255dc50146d5eacfde68fc182a8ee58
BLAKE2b-256 22c390a1e2cd020f0691edfcfc3991705a00ca2a9d84faa6ca9ede7cbe02f057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56bb6b303e2e341eb55570fd0cfa5734e5d89e8a1a5ee0096e7bb0bd9f27f9e2
MD5 8a5d96f1114e327facdb5ee33e33241b
BLAKE2b-256 609cbadf7d6bd4f85ace7b6cc203156f2a32f93fe008eb8b75e5c879d2df894b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6984b3b8032ab6807aa7c56423e961a5c4220d6b93a348dbf37ec1162b68e2d
MD5 44e24445f3af7aff3ffe7873dbd3c6e5
BLAKE2b-256 2f5a4060436e43af1143ed529deff8670df41953f4142149ca9e3fb8c940b444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87a343c86304daa6be5f96493f1eb0796d57142886f21f8d0815e1712d2bfc18
MD5 abe22e86690bfdc3ee22185b26461ab7
BLAKE2b-256 984857ad8f6a0b878bcc449b3de63890fa78b2ea518e6d3a8f44ce73a0b4c8fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0eee30a6d7c38fd4702339a5a53648f140ed8e5307baa321215d0d10dd9e535
MD5 132fb21d07b13971c1de7cf14f4aaa38
BLAKE2b-256 52e5b717460fe08e4e47cfff15b1bd18d120bf1343170ca79ef69eda41370e76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93e13c1919f8eaeb3bee9a9160c6339d1fc3913254981a1e152023c5815667cc
MD5 8e49ca847bb168d56fa0aff8dd19f490
BLAKE2b-256 959760f76ca2e04e323179cf62b708ed35820509bf5787f8970cbce3e0446c88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a18386278e02a2b7f8d73bf836f1c7945133becca7894ee0641dbacc6473322d
MD5 167bdebe6d643cf43a750c625caf3f0c
BLAKE2b-256 cecd7efe5c69fd1d24615797dabe79da1c1decaa5a2b616e74eba1735b7c1e9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: litellm-1.94.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 20.3 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.94.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9d0fabd73ca571771773a892de1c57e208349c99a3bbc51cd049a326f7a6f6e2
MD5 d4b814432efb5fb7fdd9e936d0c0fd6b
BLAKE2b-256 a0d546f25d3c329bb90fb11d1f747778730f4febd44aeddc2a5b581335250108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 136960922878cbc66065346583a60fd0d35f3b1dbe853d636d10da39f049399f
MD5 33f61e042e168ee09668de457e537854
BLAKE2b-256 a6adb6033f4f3db0d5c6a09a9cce6f3040bf50902d1c290eadbeee36057983d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e05cabfc94633e47b725bed0851ecf18809117d23e8d6ef9abaa6059c2712261
MD5 5c3748bed623e2655d007ff7cacc5808
BLAKE2b-256 2fc19b52e1ad3c8bc1356e82d819b81876928552c5ddf520563c99e5c990f84d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac40df3e6f412a2e87f61553640922d63c8114e433c85992461317b5f67ce78f
MD5 43485b9f888793571674965280aac829
BLAKE2b-256 87373ac0abf03a1a0ec218a9b36c03c0dcd619a7c44d4e0b61a29835dd08524a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8c9a92d6165570065349b8d324e7b58800cb993c39b85a5f3c7458b5d926f3d
MD5 abc82648e793a8713f667c5ec3af140f
BLAKE2b-256 ddd529460277cb2c2e86613d0899690618341442ca0816e4c6bce21638b7211e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e339bea866f313487b1d7e150374360700f7ed80cac41722f7ddb072b9b685e
MD5 7b8505b213d2c46877e43ab91d21893a
BLAKE2b-256 d6327c48a54773af614ca7395e9a6901c4e60694b4b949b41d6e3f17d8d07ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for litellm-1.94.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57a82dbbf1528aa530f021f1e6fe7528331c7d5f95fa755a17f984623eaf29ae
MD5 f3f446c420e598db0cdd45a9c4712460
BLAKE2b-256 752c749b4be192a51b945ffb9da7189bc3c5978df8a5981fe26179b877604dc2

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