litellm 1.102.1


pip install litellm

  Latest version

Released: Sep 23, 2026


Meta
Author: BerriAI
Requires Python: >=3.10, <3.15

Classifiers

๐Ÿš… 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"
      }
    }
  }
}

For MCP OAuth, an upstream may advertise dynamic client registration but refuse requests with HTTP 401 or 403. If the provider requires a pre-registered OAuth app, configure its credentials.client_id and, when required, credentials.client_secret on the MCP server. This skips dynamic registration in the gateway sign-in flow. The provider must approve the app for MCP access; reaching its authorization page does not establish that login or tool calls will succeed

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) โœ… โœ… โœ…
Cognition (cognition) โœ… โœ… โœ…
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) โœ… โœ… โœ…
Qwen AI Platform (qwen_ai_platform) โœ… โœ… โœ… โœ… โœ… โœ…
QwenCloud (qwencloud) โœ… โœ… โœ… โœ… โœ… โœ…
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

1.104.0.dev2 Sep 25, 2026
1.104.0.dev1 Sep 23, 2026
1.103.0rc1 Sep 20, 2026
1.103.0.dev2 Sep 18, 2026
1.103.0.dev1 Sep 16, 2026
1.102.1 Sep 23, 2026
1.102.0 Sep 20, 2026
1.102.0rc2 Sep 16, 2026
1.102.0rc1 Sep 13, 2026
1.102.0.dev2 Sep 11, 2026
1.102.0.dev1 Sep 09, 2026
1.101.2 Sep 24, 2026
1.101.1 Sep 23, 2026
1.101.0 Sep 14, 2026
1.101.0rc2 Sep 10, 2026
1.101.0rc1 Sep 06, 2026
1.101.0.dev2 Sep 03, 2026
1.101.0.dev1 Sep 01, 2026
1.100.3 Sep 25, 2026
1.100.2 Sep 23, 2026
1.100.1 Sep 10, 2026
1.100.0 Sep 06, 2026
1.100.0rc1 Aug 30, 2026
1.100.0.dev2 Aug 28, 2026
1.100.0.dev1 Aug 26, 2026
1.99.4 Sep 25, 2026
1.99.3 Sep 23, 2026
1.99.2 Sep 23, 2026
1.99.0 Sep 01, 2026
1.99.0rc2 Aug 30, 2026
1.99.0rc1 Aug 23, 2026
1.99.0.dev2 Aug 21, 2026
1.99.0.dev1 Aug 19, 2026
1.98.1 Sep 25, 2026
1.98.0 Aug 22, 2026
1.98.0rc1 Aug 16, 2026
1.98.0.dev2 Aug 13, 2026
1.98.0.dev1 Aug 12, 2026
1.97.0 Aug 16, 2026
1.97.0rc1 Aug 08, 2026
1.97.0.dev1 Aug 05, 2026
1.96.2 Aug 11, 2026
1.96.0 Aug 09, 2026
1.96.0rc1 Aug 03, 2026
1.96.0.dev2 Jul 31, 2026
1.95.1 Aug 09, 2026
1.95.0 Aug 02, 2026
1.95.0rc3 Aug 01, 2026
1.95.0rc2 Jul 31, 2026
1.95.0rc1 Jul 29, 2026
1.95.0.dev3 Jul 24, 2026
1.94.3 Aug 09, 2026
1.94.2 Aug 08, 2026
1.94.1 Jul 30, 2026
1.94.0 Jul 28, 2026
1.94.0rc3 Jul 22, 2026
1.94.0rc2 Jul 20, 2026
1.94.0rc1 Jul 18, 2026
1.94.0.dev3 Jul 17, 2026
1.93.2 Aug 09, 2026
1.93.1 Jul 29, 2026
1.93.0 Jul 19, 2026
1.93.0rc2 Jul 16, 2026
1.93.0rc1 Jul 12, 2026
1.93.0.dev3 Jul 10, 2026
1.93.0.dev2 Jul 09, 2026
1.93.0.dev1 Jul 08, 2026
1.92.2 Aug 09, 2026
1.92.1 Jul 19, 2026
1.92.0 Jul 12, 2026
1.92.0rc2 Jul 08, 2026
1.92.0rc1 Jul 04, 2026
1.92.0.dev2 Jul 03, 2026
1.92.0.dev1 Jun 30, 2026
1.91.5 Aug 09, 2026
1.91.4 Jul 19, 2026
1.91.3 Jul 11, 2026
1.91.2 Jul 11, 2026
1.91.1 Jul 08, 2026
1.91.0 Jul 04, 2026
1.91.0rc1 Jun 28, 2026
1.91.0.dev2 Jun 26, 2026
1.91.0.dev1 Jun 23, 2026
1.90.7 Aug 09, 2026
1.90.6 Jul 19, 2026
1.90.5 Jul 16, 2026
1.90.4 Jul 11, 2026
1.90.3 Jul 03, 2026
1.90.2 Jul 01, 2026
1.90.1 Jun 30, 2026
1.90.0 Jun 27, 2026
1.90.0rc1 Jun 21, 2026
1.89.7 Aug 09, 2026
1.89.6 Jul 03, 2026
1.89.5 Jun 30, 2026
1.89.4 Jun 25, 2026
1.89.3 Jun 20, 2026
1.89.2 Jun 18, 2026
1.89.1 Jun 16, 2026
1.89.0 Jun 13, 2026
1.89.0rc2 Jun 10, 2026
1.89.0rc1 Jun 06, 2026
1.88.6 Aug 09, 2026
1.88.5 Jun 24, 2026
1.88.4 Jun 20, 2026
1.88.3 Jun 17, 2026
1.88.2 Jun 14, 2026
1.88.1 Jun 09, 2026
1.88.0 Jun 06, 2026
1.88.0rc3 Jun 05, 2026
1.88.0rc2 Jun 04, 2026
1.88.0rc1 May 31, 2026
1.88.0.dev1 May 29, 2026
1.87.5 Jun 24, 2026
1.87.4 Jun 20, 2026
1.87.3 Jun 14, 2026
1.87.2 Jun 11, 2026
1.87.1 Jun 04, 2026
1.87.0 Jun 02, 2026
1.87.0rc2 May 27, 2026
1.87.0rc1 May 24, 2026
1.87.0.dev1 May 20, 2026
1.86.7 Jun 24, 2026
1.86.6 Jun 14, 2026
1.86.5 Jun 11, 2026
1.86.4 Jun 04, 2026
1.86.3 Jun 03, 2026
1.86.2 May 27, 2026
1.86.1 May 26, 2026
1.86.0 May 24, 2026
1.86.0rc1 May 17, 2026
1.85.7 Jun 24, 2026
1.85.6 Jun 14, 2026
1.85.5 Jun 11, 2026
1.85.4 Jun 04, 2026
1.85.3 Jun 02, 2026
1.85.2 May 27, 2026
1.85.1 May 21, 2026
1.85.0 May 17, 2026
1.85.0rc2 May 14, 2026
1.85.0rc1 May 13, 2026
1.85.0.dev2 May 09, 2026
1.85.0.dev1 May 08, 2026
1.84.10 Jun 24, 2026
1.84.9 Jun 17, 2026
1.84.8 Jun 13, 2026
1.84.7 Jun 11, 2026
1.84.6 Jun 09, 2026
1.84.5 Jun 04, 2026
1.84.4 May 31, 2026
1.84.3 May 27, 2026
1.84.2 May 27, 2026
1.84.1 May 21, 2026
1.84.0 May 14, 2026
1.84.0rc1 May 05, 2026
1.84.0.dev2 May 01, 2026
1.84.0.dev1 Apr 29, 2026
1.83.14 Apr 26, 2026
1.83.13 Apr 24, 2026
1.83.12 Apr 23, 2026
1.83.11 Apr 22, 2026
1.83.10 Apr 19, 2026
1.83.9 Apr 17, 2026
1.83.8 Apr 15, 2026
1.83.7 Apr 13, 2026
1.83.6 Apr 13, 2026
1.83.5 Apr 13, 2026
1.83.4 Apr 07, 2026
1.83.3 Apr 05, 2026
1.83.2 Apr 04, 2026
1.83.1 Apr 03, 2026
1.83.0 Mar 31, 2026
1.82.6 Mar 22, 2026
1.82.5 Mar 21, 2026
1.82.4 Mar 18, 2026
1.82.3 Mar 16, 2026
1.82.2 Mar 13, 2026
1.82.1 Mar 10, 2026
1.82.0 Mar 01, 2026
1.81.16 Feb 26, 2026
1.81.15 Feb 24, 2026
1.81.14 Feb 22, 2026
1.81.13 Feb 17, 2026
1.81.12 Feb 15, 2026
1.81.11 Feb 13, 2026
1.81.10 Feb 11, 2026
1.81.9 Feb 07, 2026
1.81.9.dev1 Mar 13, 2026
1.81.8 Feb 05, 2026
1.81.7 Feb 03, 2026
1.81.6 Feb 01, 2026
1.81.5 Jan 29, 2026
1.81.4 Jan 27, 2026
1.81.3 Jan 25, 2026
1.81.1 Jan 21, 2026
1.81.0 Jan 18, 2026
1.80.17 Jan 17, 2026
1.80.16 Jan 13, 2026
1.80.15 Jan 11, 2026
1.80.13 Jan 09, 2026
1.80.12 Jan 07, 2026
1.80.11 Dec 22, 2025
1.80.10 Dec 14, 2025
1.80.9 Dec 08, 2025
1.80.8 Dec 07, 2025
1.80.7 Nov 27, 2025
1.80.6 Nov 27, 2025
1.80.5 Nov 22, 2025
1.80.0 Nov 16, 2025
1.79.3 Nov 09, 2025
1.79.3.dev8 Nov 15, 2025
1.79.2 Nov 08, 2025
1.79.1 Nov 01, 2025
1.79.0 Oct 26, 2025
1.79.0.dev3 Oct 29, 2025
1.79.0.dev2 Oct 29, 2025
1.79.0.dev1 Oct 27, 2025
1.78.7 Oct 22, 2025
1.78.6 Oct 21, 2025
1.78.5 Oct 18, 2025
1.78.4 Oct 18, 2025
1.78.3 Oct 17, 2025
1.78.2 Oct 16, 2025
1.78.0 Oct 11, 2025
1.78.0rc2 Oct 13, 2025
1.77.7 Oct 05, 2025
1.77.5 Sep 28, 2025
1.77.4 Sep 24, 2025
1.77.4.dev1 Sep 26, 2025
1.77.3 Sep 21, 2025
1.77.2.post1 Sep 20, 2025
1.77.1 Sep 13, 2025
1.77.0 Sep 09, 2025
1.76.3 Sep 07, 2025
1.76.2 Sep 04, 2025
1.76.1 Aug 30, 2025
1.76.0 Aug 24, 2025
1.75.9 Aug 20, 2025
1.75.8 Aug 16, 2025
1.75.7 Aug 15, 2025
1.75.6 Aug 14, 2025
1.75.5.post2 Aug 18, 2025
1.75.5.post1 Aug 10, 2025
1.75.4 Aug 09, 2025
1.75.3 Aug 08, 2025
1.75.2 Aug 08, 2025
1.75.0 Aug 05, 2025
1.74.15.post2 Aug 09, 2025
1.74.15.post1 Aug 02, 2025
1.74.15 Aug 02, 2025
1.74.14 Aug 02, 2025
1.74.12 Jul 31, 2025
1.74.9.post2 Aug 03, 2025
1.74.9.post1 Jul 29, 2025
1.74.9 Jul 28, 2025
1.74.9.dev2 Jul 25, 2025
1.74.9.dev1 Jul 25, 2025
1.74.8 Jul 23, 2025
1.74.8.dev2 Jul 24, 2025
1.74.7.post2 Jul 25, 2025
1.74.7.post1 Jul 25, 2025
1.74.7 Jul 20, 2025
1.74.7rc1 Jul 21, 2025
1.74.6 Jul 19, 2025
1.74.4 Jul 17, 2025
1.74.4.dev1 Jul 16, 2025
1.74.3.post1 Jul 17, 2025
1.74.3 Jul 12, 2025
1.74.3rc3 Jul 16, 2025
1.74.3rc2 Jul 13, 2025
1.74.3rc1 Jul 13, 2025
1.74.2 Jul 11, 2025
1.74.1 Jul 10, 2025
1.74.0.post2 Jul 10, 2025
1.74.0.post1 Jul 07, 2025
1.74.0 Jul 05, 2025
1.73.7 Jul 04, 2025
1.73.7.dev4 Jul 02, 2025
1.73.7.dev3 Jul 02, 2025
1.73.7.dev2 Jul 02, 2025
1.73.7.dev1 Jul 02, 2025
1.73.6.post1 Jul 04, 2025
1.73.6 Jun 28, 2025
1.73.6rc2 Jul 04, 2025
1.73.2 Jun 26, 2025
1.73.1 Jun 24, 2025
1.73.0.post1 Jun 26, 2025
1.73.0 Jun 22, 2025
1.73.0rc1 Jun 22, 2025
1.72.9 Jun 21, 2025
1.72.7 Jun 20, 2025
1.72.7.dev7 Jun 19, 2025
1.72.7.dev1 Jun 17, 2025
1.72.6.post2 Jun 19, 2025
1.72.6.post1 Jun 18, 2025
1.72.6 Jun 14, 2025
1.72.5.dev3 Jun 13, 2025
1.72.5.dev2 Jun 13, 2025
1.72.5.dev1 Jun 13, 2025
1.72.4 Jun 11, 2025
1.72.3 Jun 10, 2025
1.72.2.post1 Jun 13, 2025
1.72.2 Jun 07, 2025
1.72.1 Jun 04, 2025
1.72.0 Jun 01, 2025
1.71.3 May 31, 2025
1.71.2 May 28, 2025
1.71.1 May 25, 2025
1.71.0 May 24, 2025
1.70.4 May 23, 2025
1.70.2 May 21, 2025
1.70.0 May 17, 2025
1.69.3 May 15, 2025
1.69.2 May 13, 2025
1.69.1 May 12, 2025
1.69.0 May 11, 2025
1.68.2 May 09, 2025
1.68.1 May 07, 2025
1.68.1.dev1 May 07, 2025
1.68.0 May 04, 2025
1.67.6 May 02, 2025
1.67.5 Apr 30, 2025
1.67.4.post1 Apr 28, 2025
1.67.4 Apr 27, 2025
1.67.4.dev1 Apr 27, 2025
1.67.2 Apr 24, 2025
1.67.1 Apr 22, 2025
1.67.0.post1 Apr 21, 2025
1.67.0 Apr 19, 2025
1.66.3 Apr 17, 2025
1.66.2 Apr 17, 2025
1.66.1 Apr 15, 2025
1.66.0 Apr 13, 2025
1.65.8 Apr 12, 2025
1.65.7 Apr 11, 2025
1.65.6 Apr 10, 2025
1.65.5 Apr 10, 2025
1.65.4.post1 Apr 05, 2025
1.65.4 Apr 05, 2025
1.65.3 Apr 03, 2025
1.65.1 Apr 01, 2025
1.65.0.post1 Apr 01, 2025
1.65.0 Mar 28, 2025
1.64.1 Mar 26, 2025
1.63.14 Mar 22, 2025
1.63.12 Mar 19, 2025
1.63.11 Mar 15, 2025
1.63.11.dev1 Mar 19, 2025
1.63.8 Mar 13, 2025
1.63.7 Mar 12, 2025
1.63.6 Mar 11, 2025
1.63.5 Mar 10, 2025
1.63.4.dev1 Mar 15, 2025
1.63.3 Mar 07, 2025
1.63.2 Mar 06, 2025
1.63.0 Mar 06, 2025
1.63.0.dev12 Mar 06, 2025
1.62.4 Mar 05, 2025
1.62.1 Mar 03, 2025
1.61.20 Feb 27, 2025
1.61.19 Feb 27, 2025
1.61.17 Feb 26, 2025
1.61.16 Feb 25, 2025
1.61.15 Feb 23, 2025
1.61.13 Feb 21, 2025
1.61.11 Feb 20, 2025
1.61.9 Feb 19, 2025
1.61.8 Feb 18, 2025
1.61.7 Feb 18, 2025
1.61.6 Feb 16, 2025
1.61.5 Feb 16, 2025
1.61.4 Feb 15, 2025
1.61.3 Feb 14, 2025
1.61.2 Feb 14, 2025
1.61.1 Feb 12, 2025
1.61.0 Feb 11, 2025
1.61.0.dev1 Feb 11, 2025
1.60.9 Feb 11, 2025
1.60.8 Feb 08, 2025
1.60.7 Feb 08, 2025
1.60.6 Feb 07, 2025
1.60.5 Feb 06, 2025
1.60.4 Feb 05, 2025
1.60.2 Feb 04, 2025
1.60.0 Feb 01, 2025
1.59.12 Jan 31, 2025
1.59.10 Jan 30, 2025
1.59.10.dev1 Jan 31, 2025
1.59.9 Jan 29, 2025
1.59.8 Jan 26, 2025
1.59.7 Jan 25, 2025
1.59.6 Jan 24, 2025
1.59.5 Jan 23, 2025
1.59.3 Jan 22, 2025
1.59.2 Jan 22, 2025
1.59.1 Jan 21, 2025
1.59.1.dev1 Jan 21, 2025
1.59.0 Jan 18, 2025
1.58.4 Jan 17, 2025
1.58.2 Jan 15, 2025
1.58.1 Jan 14, 2025
1.58.0 Jan 13, 2025
1.57.11 Jan 13, 2025
1.57.10 Jan 12, 2025
1.57.8 Jan 11, 2025
1.57.7 Jan 10, 2025
1.57.7.dev1 Jan 10, 2025
1.57.5 Jan 10, 2025
1.57.4 Jan 09, 2025
1.57.3 Jan 08, 2025
1.57.2 Jan 08, 2025
1.57.1 Jan 07, 2025
1.57.0 Jan 06, 2025
1.56.10 Jan 04, 2025
1.56.9 Jan 04, 2025
1.56.8 Jan 03, 2025
1.56.8.dev7 Jan 03, 2025
1.56.8.dev6 Jan 03, 2025
1.56.8.dev5 Jan 03, 2025
1.56.8.dev4 Jan 03, 2025
1.56.6 Jan 02, 2025
1.56.5 Dec 31, 2024
1.56.4 Dec 29, 2024
1.56.3 Dec 28, 2024
1.56.2 Dec 27, 2024
1.55.12 Dec 25, 2024
1.55.11 Dec 24, 2024
1.55.10 Dec 24, 2024
1.55.9 Dec 21, 2024
1.55.8 Dec 21, 2024
1.55.7 Dec 19, 2024
1.55.6 Dec 19, 2024
1.55.4 Dec 18, 2024
1.55.3 Dec 16, 2024
1.55.2 Dec 13, 2024
1.55.1 Dec 13, 2024
1.55.0 Dec 12, 2024
1.54.1 Dec 09, 2024
1.54.0 Dec 08, 2024
1.53.9 Dec 07, 2024
1.53.8 Dec 07, 2024
1.53.7 Dec 05, 2024
1.53.6 Dec 05, 2024
1.53.5 Dec 04, 2024
1.53.4 Dec 04, 2024
1.53.3 Dec 03, 2024
1.53.2 Dec 03, 2024
1.53.1 Nov 28, 2024
1.53.1.dev1 Dec 03, 2024
1.14.4 Dec 14, 2023
1.14.3 Dec 14, 2023
1.14.2 Dec 14, 2023
1.14.1 Dec 14, 2023
1.14.0 Dec 13, 2023
1.14.0.dev1 Dec 13, 2023
1.13.2 Dec 13, 2023
1.12.6.dev5 Dec 12, 2023
1.12.6.dev4 Dec 12, 2023
1.12.6.dev3 Dec 12, 2023
1.12.6.dev2 Dec 12, 2023
1.12.6.dev1 Dec 12, 2023
1.12.5 Dec 12, 2023
1.12.5.dev1 Dec 12, 2023
1.12.3 Dec 10, 2023
1.12.2 Dec 10, 2023
1.12.1 Dec 09, 2023
1.12.0 Dec 08, 2023
1.11.1 Dec 07, 2023
1.11.0 Dec 07, 2023
1.10.11 Dec 06, 2023
1.10.10 Dec 06, 2023
1.10.9 Dec 05, 2023
1.10.8 Dec 05, 2023
1.10.6 Dec 05, 2023
1.10.4 Dec 05, 2023
1.10.3 Dec 05, 2023
1.10.2 Dec 03, 2023
1.10.1 Dec 02, 2023
1.10.0 Dec 02, 2023
1.10.dev11 Dec 06, 2023
1.9.5 Dec 02, 2023
1.9.4 Dec 01, 2023
1.9.3 Nov 30, 2023
1.9.2 Nov 30, 2023
1.9.1 Nov 30, 2023
1.9.0 Nov 30, 2023
1.9.dev0 Nov 30, 2023
1.8.1 Nov 30, 2023
1.7.12 Nov 29, 2023
1.7.11 Nov 29, 2023
1.7.9 Nov 28, 2023
1.7.8 Nov 28, 2023
1.7.7 Nov 27, 2023
1.7.6 Nov 27, 2023
1.7.5 Nov 26, 2023
1.7.4 Nov 26, 2023
1.7.3 Nov 26, 2023
1.7.2 Nov 26, 2023
1.7.1 Nov 25, 2023
1.6.0 Nov 24, 2023
1.4.0 Nov 22, 2023
1.3.3 Nov 21, 2023
1.3.3.dev3 Nov 21, 2023
1.3.3.dev2 Nov 21, 2023
1.3.3.dev1 Nov 21, 2023
1.3.1 Nov 21, 2023
1.2.0 Nov 21, 2023
1.1.3 Nov 20, 2023
1.1.2 Nov 20, 2023
1.1.1 Nov 19, 2023
1.1.0 Nov 18, 2023
1.0.3 Nov 16, 2023
1.0.3.dev1 Nov 15, 2023
1.0.0 Nov 14, 2023
1.0.0.dev1 Nov 12, 2023
0.14.1 Nov 11, 2023
0.14.0 Nov 11, 2023
0.14.0.dev1 Nov 10, 2023
0.13.7.dev1 Nov 08, 2023
0.13.6.dev3 Nov 07, 2023
0.13.6.dev2 Nov 07, 2023
0.13.6.dev1 Nov 07, 2023
0.13.3.dev2 Nov 06, 2023
0.13.3.dev1 Nov 06, 2023
0.13.2 Nov 06, 2023
0.13.2.dev1 Nov 06, 2023
0.13.1 Nov 05, 2023
0.13.1.dev3 Nov 05, 2023
0.13.1.dev2 Nov 05, 2023
0.13.1.dev1 Nov 05, 2023
0.13.0 Nov 05, 2023
0.12.12 Nov 03, 2023
0.12.11 Nov 03, 2023
0.12.10 Nov 02, 2023
0.12.9 Nov 02, 2023
0.12.8 Nov 01, 2023
0.12.7 Oct 31, 2023
0.12.7.dev1 Oct 27, 2023
0.12.5 Oct 25, 2023
0.12.5.dev1 Oct 26, 2023
0.12.4 Oct 24, 2023
0.12.4.dev2 Oct 24, 2023
0.12.4.dev1 Oct 24, 2023
0.11.1 Oct 20, 2023
0.10.1 Oct 18, 2023
0.10.0 Oct 18, 2023
0.9.2 Oct 17, 2023
0.9.2.dev1 Oct 17, 2023
0.9.1 Oct 17, 2023
0.9.0 Oct 17, 2023
0.8.6 Oct 17, 2023
0.8.5 Oct 17, 2023
0.8.4 Oct 14, 2023
0.8.3 Oct 14, 2023
0.8.2 Oct 13, 2023
0.8.1 Oct 13, 2023
0.8.0 Oct 13, 2023
0.7.10 Oct 13, 2023
0.7.9 Oct 13, 2023
0.7.5 Oct 11, 2023
0.7.4 Oct 11, 2023
0.7.3 Oct 11, 2023
0.7.1 Oct 11, 2023
0.7.1.dev3 Oct 11, 2023
0.7.1.dev2 Oct 11, 2023
0.7.1.dev1 Oct 11, 2023
0.6.6 Oct 10, 2023
0.6.2 Oct 09, 2023
0.6.1 Oct 09, 2023
0.6.0 Oct 09, 2023
0.5.6 Oct 08, 2023
0.5.4 Oct 07, 2023
0.5.3 Oct 07, 2023
0.5.2 Oct 07, 2023
0.4.4 Oct 07, 2023
0.4.0 Oct 06, 2023
0.3.1 Oct 06, 2023
0.3.0 Oct 06, 2023
0.2.6 Oct 06, 2023
0.2.5 Oct 06, 2023
0.1.7713 Sep 26, 2023
0.1.7701 Sep 26, 2023
0.1.2291 Aug 03, 2023
0.1.824 Oct 06, 2023
0.1.821 Oct 05, 2023
0.1.820 Oct 04, 2023
0.1.819 Oct 04, 2023
0.1.818 Oct 04, 2023
0.1.817 Oct 03, 2023
0.1.816 Oct 03, 2023
0.1.815 Oct 03, 2023
0.1.814 Oct 03, 2023
0.1.813 Oct 02, 2023
0.1.807 Oct 01, 2023
0.1.806 Oct 01, 2023
0.1.805 Sep 30, 2023
0.1.794 Sep 28, 2023
0.1.793 Sep 28, 2023
0.1.789 Sep 28, 2023
0.1.788 Sep 28, 2023
0.1.786 Sep 28, 2023
0.1.784 Sep 27, 2023
0.1.781 Sep 27, 2023
0.1.780 Sep 27, 2023
0.1.774 Sep 27, 2023
0.1.772 Sep 27, 2023
0.1.769 Sep 26, 2023
0.1.765 Sep 26, 2023
0.1.758 Sep 26, 2023
0.1.751 Sep 26, 2023
0.1.750 Sep 26, 2023
0.1.749 Sep 26, 2023
0.1.748 Sep 26, 2023
0.1.747 Sep 25, 2023
0.1.746 Sep 25, 2023
0.1.745 Sep 25, 2023
0.1.743 Sep 24, 2023
0.1.738 Sep 23, 2023
0.1.736 Sep 22, 2023
0.1.729 Sep 21, 2023
0.1.724 Sep 21, 2023
0.1.723 Sep 21, 2023
0.1.721 Sep 21, 2023
0.1.720 Sep 21, 2023
0.1.719 Sep 21, 2023
0.1.716 Sep 20, 2023
0.1.715 Sep 20, 2023
0.1.714 Sep 20, 2023
0.1.714.dev1 Sep 20, 2023
0.1.706 Sep 20, 2023
0.1.704 Sep 19, 2023
0.1.702 Sep 19, 2023
0.1.700 Sep 19, 2023
0.1.700.dev5 Sep 19, 2023
0.1.700.dev4 Sep 19, 2023
0.1.700.dev3 Sep 19, 2023
0.1.700.dev2 Sep 19, 2023
0.1.700.dev1 Sep 19, 2023
0.1.700.dev0 Sep 19, 2023
0.1.698 Sep 18, 2023
0.1.697 Sep 18, 2023
0.1.696 Sep 18, 2023
0.1.693 Sep 18, 2023
0.1.692 Sep 18, 2023
0.1.690 Sep 18, 2023
0.1.689 Sep 17, 2023
0.1.687 Sep 17, 2023
0.1.686 Sep 17, 2023
0.1.685 Sep 17, 2023
0.1.683 Sep 16, 2023
0.1.681 Sep 16, 2023
0.1.680 Sep 16, 2023
0.1.674 Sep 16, 2023
0.1.652 Sep 16, 2023
0.1.651 Sep 16, 2023
0.1.650 Sep 15, 2023
0.1.649 Sep 15, 2023
0.1.648 Sep 15, 2023
0.1.647 Sep 15, 2023
0.1.646 Sep 15, 2023
0.1.645 Sep 15, 2023
0.1.644 Sep 15, 2023
0.1.643 Sep 15, 2023
0.1.642 Sep 15, 2023
0.1.641 Sep 15, 2023
0.1.639 Sep 15, 2023
0.1.638 Sep 15, 2023
0.1.636 Sep 15, 2023
0.1.635 Sep 15, 2023
0.1.634 Sep 15, 2023
0.1.632 Sep 14, 2023
0.1.631 Sep 14, 2023
0.1.630 Sep 14, 2023
0.1.629 Sep 14, 2023
0.1.626 Sep 14, 2023
0.1.625 Sep 14, 2023
0.1.624 Sep 14, 2023
0.1.623 Sep 14, 2023
0.1.621 Sep 14, 2023
0.1.620 Sep 13, 2023
0.1.619 Sep 13, 2023
0.1.618 Sep 13, 2023
0.1.615 Sep 13, 2023
0.1.610 Sep 13, 2023
0.1.609 Sep 13, 2023
0.1.607 Sep 12, 2023
0.1.605 Sep 12, 2023
0.1.604 Sep 12, 2023
0.1.601 Sep 12, 2023
0.1.600 Sep 12, 2023
0.1.598 Sep 11, 2023
0.1.597 Sep 11, 2023
0.1.596 Sep 11, 2023
0.1.595 Sep 11, 2023
0.1.593 Sep 11, 2023
0.1.591 Sep 11, 2023
0.1.590 Sep 11, 2023
0.1.587 Sep 11, 2023
0.1.586 Sep 11, 2023
0.1.585 Sep 11, 2023
0.1.583 Sep 10, 2023
0.1.582 Sep 10, 2023
0.1.580 Sep 10, 2023
0.1.578 Sep 10, 2023
0.1.574 Sep 09, 2023
0.1.570 Sep 09, 2023
0.1.569 Sep 09, 2023
0.1.568 Sep 09, 2023
0.1.567 Sep 09, 2023
0.1.563 Sep 08, 2023
0.1.562 Sep 08, 2023
0.1.561 Sep 08, 2023
0.1.560 Sep 08, 2023
0.1.559 Sep 07, 2023
0.1.558 Sep 07, 2023
0.1.557 Sep 07, 2023
0.1.556 Sep 07, 2023
0.1.555 Sep 07, 2023
0.1.554 Sep 07, 2023
0.1.553 Sep 07, 2023
0.1.552 Sep 07, 2023
0.1.551 Sep 07, 2023
0.1.550 Sep 07, 2023
0.1.549 Sep 07, 2023
0.1.548 Sep 07, 2023
0.1.547 Sep 07, 2023
0.1.546 Sep 07, 2023
0.1.544 Sep 06, 2023
0.1.538 Sep 06, 2023
0.1.537 Sep 05, 2023
0.1.536 Sep 05, 2023
0.1.535 Sep 05, 2023
0.1.533 Sep 05, 2023
0.1.531 Sep 04, 2023
0.1.530 Sep 04, 2023
0.1.525 Sep 03, 2023
0.1.520 Sep 03, 2023
0.1.518 Sep 02, 2023
0.1.517 Sep 02, 2023
0.1.516 Sep 02, 2023
0.1.512 Aug 31, 2023
0.1.511 Aug 31, 2023
0.1.510 Aug 31, 2023
0.1.509 Aug 31, 2023
0.1.508 Aug 30, 2023
0.1.507 Aug 30, 2023
0.1.504 Aug 30, 2023
0.1.501 Aug 29, 2023
0.1.500 Aug 29, 2023
0.1.497 Aug 28, 2023
0.1.495 Aug 28, 2023
0.1.494 Aug 28, 2023
0.1.493 Aug 28, 2023
0.1.492 Aug 27, 2023
0.1.491 Aug 27, 2023
0.1.490 Aug 27, 2023
0.1.488 Aug 26, 2023
0.1.487 Aug 26, 2023
0.1.486 Aug 26, 2023
0.1.482 Aug 25, 2023
0.1.481 Aug 25, 2023
0.1.480 Aug 25, 2023
0.1.479 Aug 24, 2023
0.1.477 Aug 24, 2023
0.1.475 Aug 24, 2023
0.1.465 Aug 23, 2023
0.1.464 Aug 23, 2023
0.1.461 Aug 23, 2023
0.1.460 Aug 23, 2023
0.1.459 Aug 23, 2023
0.1.457 Aug 23, 2023
0.1.456 Aug 22, 2023
0.1.452 Aug 22, 2023
0.1.451 Aug 22, 2023
0.1.450 Aug 22, 2023
0.1.449 Aug 22, 2023
0.1.448 Aug 22, 2023
0.1.447 Aug 21, 2023
0.1.446 Aug 21, 2023
0.1.445 Aug 21, 2023
0.1.444 Aug 21, 2023
0.1.443 Aug 21, 2023
0.1.442 Aug 21, 2023
0.1.441 Aug 21, 2023
0.1.440 Aug 21, 2023
0.1.439 Aug 21, 2023
0.1.438 Aug 21, 2023
0.1.437 Aug 21, 2023
0.1.436 Aug 20, 2023
0.1.435 Aug 20, 2023
0.1.434 Aug 20, 2023
0.1.433 Aug 20, 2023
0.1.429 Aug 19, 2023
0.1.426 Aug 18, 2023
0.1.425 Aug 18, 2023
0.1.424 Aug 18, 2023
0.1.422 Aug 18, 2023
0.1.421 Aug 18, 2023
0.1.420 Aug 18, 2023
0.1.419 Aug 18, 2023
0.1.415 Aug 18, 2023
0.1.412 Aug 17, 2023
0.1.411 Aug 17, 2023
0.1.410 Aug 17, 2023
0.1.405 Aug 16, 2023
0.1.404 Aug 16, 2023
0.1.403 Aug 16, 2023
0.1.402 Aug 16, 2023
0.1.401 Aug 16, 2023
0.1.400 Aug 15, 2023
0.1.399 Aug 15, 2023
0.1.398 Aug 15, 2023
0.1.394 Aug 15, 2023
0.1.393 Aug 15, 2023
0.1.392 Aug 15, 2023
0.1.389 Aug 14, 2023
0.1.388 Aug 14, 2023
0.1.387 Aug 14, 2023
0.1.386 Aug 13, 2023
0.1.385 Aug 12, 2023
0.1.384 Aug 12, 2023
0.1.383 Aug 12, 2023
0.1.381 Aug 11, 2023
0.1.380 Aug 11, 2023
0.1.379 Aug 11, 2023
0.1.376 Aug 11, 2023
0.1.375 Aug 11, 2023
0.1.373 Aug 10, 2023
0.1.372 Aug 10, 2023
0.1.371 Aug 10, 2023
0.1.370 Aug 09, 2023
0.1.369 Aug 09, 2023
0.1.368 Aug 09, 2023
0.1.367 Aug 09, 2023
0.1.366 Aug 09, 2023
0.1.365 Aug 09, 2023
0.1.364 Aug 09, 2023
0.1.363 Aug 08, 2023
0.1.362 Aug 08, 2023
0.1.361 Aug 08, 2023
0.1.360 Aug 08, 2023
0.1.356 Aug 08, 2023
0.1.354 Aug 07, 2023
0.1.353 Aug 07, 2023
0.1.352 Aug 07, 2023
0.1.351 Aug 06, 2023
0.1.349 Aug 06, 2023
0.1.348 Aug 06, 2023
0.1.347 Aug 06, 2023
0.1.345 Aug 05, 2023
0.1.343 Aug 05, 2023
0.1.341 Aug 05, 2023
0.1.331 Aug 05, 2023
0.1.330 Aug 05, 2023
0.1.238 Aug 05, 2023
0.1.237 Aug 05, 2023
0.1.236 Aug 05, 2023
0.1.235 Aug 05, 2023
0.1.234 Aug 05, 2023
0.1.233 Aug 05, 2023
0.1.232 Aug 04, 2023
0.1.231 Aug 05, 2023
0.1.230 Aug 03, 2023
0.1.229 Aug 03, 2023
0.1.228 Aug 03, 2023
0.1.227 Aug 03, 2023
0.1.226 Aug 03, 2023
0.1.225 Aug 03, 2023
0.1.224 Aug 03, 2023
0.1.223 Aug 03, 2023
0.1.222 Aug 03, 2023
0.1.221 Aug 03, 2023
0.1.220 Aug 03, 2023
0.1.219 Aug 03, 2023
0.1.218 Aug 02, 2023
0.1.217 Aug 02, 2023
0.1.216 Aug 02, 2023
0.1.215 Aug 02, 2023
0.1.214 Aug 02, 2023
0.1.213 Aug 02, 2023
0.1.212 Aug 02, 2023
0.1.211 Aug 01, 2023
0.1.210 Aug 01, 2023
0.1.209 Aug 01, 2023
0.1.208 Aug 01, 2023
0.1.207 Aug 01, 2023
0.1.206 Aug 01, 2023
0.1.205 Aug 01, 2023
0.1.204 Aug 01, 2023
0.1.203 Jul 31, 2023
0.1.202 Jul 31, 2023
0.1.201 Jul 31, 2023
0.1.34 Aug 05, 2023
0.1.32 Aug 05, 2023
0.1.31 Aug 05, 2023
0.1.3 Aug 05, 2023
0.1.2 Jul 29, 2023
0.1.1 Jul 27, 2023
0.1.0 Jul 27, 2023
Extras:
Dependencies:
fastuuid (<1.0,>=0.14.0)
httpx (<1.0,>=0.28.0)
openai (<3.0.0,>=2.20.0)
python-dotenv (<2.0,>=1.0.0)
tiktoken (<1.0,>=0.8.0)
importlib-metadata (<9.0,>=8.0.0)
tokenizers (<1.0,>=0.21.0)
click (<9.0,>=8.0.0)
jinja2 (<4.0,>=3.1.6)
aiohttp (<4.0,>=3.14.2)
pydantic (<3.0.0,>=2.10.0)
pydantic-settings (<3.0,>=2.14.1)
jsonschema (<5.0,>=4.0.0)
boto3 (<2.0,>=1.43.1)