litellm 1.78.6


pip install litellm

  Latest version

Released: Oct 21, 2025


Meta
Author: BerriAI
Requires Python: >=3.8, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*

Classifiers

License
  • OSI Approved :: MIT License

Programming Language
  • Python :: 3
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13

๐Ÿš… LiteLLM

Deploy to Render Deploy on Railway

Call all LLM APIs using the OpenAI format [Bedrock, Huggingface, VertexAI, TogetherAI, Azure, OpenAI, Groq etc.]

LiteLLM Proxy Server (LLM Gateway) | Hosted Proxy (Preview) | Enterprise Tier

PyPI Version Y Combinator W23 Whatsapp Discord Slack

LiteLLM manages:

  • Translate inputs to provider's completion, embedding, and image_generation endpoints
  • Consistent output, text responses will always be available at ['choices'][0]['message']['content']
  • Retry/fallback logic across multiple deployments (e.g. Azure/OpenAI) - Router
  • Set Budgets & Rate limits per project, api key, model LiteLLM Proxy Server (LLM Gateway)

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

๐Ÿšจ 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.

Usage (Docs)

[!IMPORTANT] LiteLLM v1.0.0 now requires openai>=1.0.0. Migration guide here LiteLLM v1.40.14+ now requires pydantic>=2.0.0. No changes required.

Open In Colab
pip install litellm
from litellm import completion
import os

## set ENV variables
os.environ["OPENAI_API_KEY"] = "your-openai-key"
os.environ["ANTHROPIC_API_KEY"] = "your-anthropic-key"

messages = [{ "content": "Hello, how are you?","role": "user"}]

# openai call
response = completion(model="openai/gpt-4o", messages=messages)

# anthropic call
response = completion(model="anthropic/claude-sonnet-4-20250514", messages=messages)
print(response)

Response (OpenAI Format)

{
    "id": "chatcmpl-1214900a-6cdd-4148-b663-b5e2f642b4de",
    "created": 1751494488,
    "model": "claude-sonnet-4-20250514",
    "object": "chat.completion",
    "system_fingerprint": null,
    "choices": [
        {
            "finish_reason": "stop",
            "index": 0,
            "message": {
                "content": "Hello! I'm doing well, thank you for asking. I'm here and ready to help with whatever you'd like to discuss or work on. How are you doing today?",
                "role": "assistant",
                "tool_calls": null,
                "function_call": null
            }
        }
    ],
    "usage": {
        "completion_tokens": 39,
        "prompt_tokens": 13,
        "total_tokens": 52,
        "completion_tokens_details": null,
        "prompt_tokens_details": {
            "audio_tokens": null,
            "cached_tokens": 0
        },
        "cache_creation_input_tokens": 0,
        "cache_read_input_tokens": 0
    }
}

Call any model supported by a provider, with model=<provider_name>/<model_name>. There might be provider-specific details here, so refer to provider docs for more information

Async (Docs)

from litellm import acompletion
import asyncio

async def test_get_response():
    user_message = "Hello, how are you?"
    messages = [{"content": user_message, "role": "user"}]
    response = await acompletion(model="openai/gpt-4o", messages=messages)
    return response

response = asyncio.run(test_get_response())
print(response)

Streaming (Docs)

liteLLM supports streaming the model response back, pass stream=True to get a streaming iterator in response. Streaming is supported for all models (Bedrock, Huggingface, TogetherAI, Azure, OpenAI, etc.)

from litellm import completion
response = completion(model="openai/gpt-4o", messages=messages, stream=True)
for part in response:
    print(part.choices[0].delta.content or "")

# claude sonnet 4
response = completion('anthropic/claude-sonnet-4-20250514', messages, stream=True)
for part in response:
    print(part)

Response chunk (OpenAI Format)

{
    "id": "chatcmpl-fe575c37-5004-4926-ae5e-bfbc31f356ca",
    "created": 1751494808,
    "model": "claude-sonnet-4-20250514",
    "object": "chat.completion.chunk",
    "system_fingerprint": null,
    "choices": [
        {
            "finish_reason": null,
            "index": 0,
            "delta": {
                "provider_specific_fields": null,
                "content": "Hello",
                "role": "assistant",
                "function_call": null,
                "tool_calls": null,
                "audio": null
            },
            "logprobs": null
        }
    ],
    "provider_specific_fields": null,
    "stream_options": null,
    "citations": null
}

Logging Observability (Docs)

LiteLLM exposes pre defined callbacks to send data to Lunary, MLflow, Langfuse, DynamoDB, s3 Buckets, Helicone, Promptlayer, Traceloop, Athina, Slack

from litellm import completion

## set env variables for logging tools (when using MLflow, no API key set up is required)
os.environ["LUNARY_PUBLIC_KEY"] = "your-lunary-public-key"
os.environ["HELICONE_API_KEY"] = "your-helicone-auth-key"
os.environ["LANGFUSE_PUBLIC_KEY"] = ""
os.environ["LANGFUSE_SECRET_KEY"] = ""
os.environ["ATHINA_API_KEY"] = "your-athina-api-key"

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

# set callbacks
litellm.success_callback = ["lunary", "mlflow", "langfuse", "athina", "helicone"] # log input/output to lunary, langfuse, supabase, athina, helicone etc

#openai call
response = completion(model="openai/gpt-4o", messages=[{"role": "user", "content": "Hi ๐Ÿ‘‹ - i'm openai"}])

LiteLLM Proxy Server (LLM Gateway) - (Docs)

Track spend + Load Balance across multiple projects

Hosted Proxy (Preview)

The proxy provides:

  1. Hooks for auth
  2. Hooks for logging
  3. Cost tracking
  4. Rate Limiting

๐Ÿ“– Proxy Endpoints - Swagger Docs

Quick Start Proxy - CLI

pip install 'litellm[proxy]'

Step 1: Start litellm proxy

$ litellm --model huggingface/bigcode/starcoder

#INFO: Proxy running on http://0.0.0.0:4000

Step 2: Make ChatCompletions Request to Proxy

[!IMPORTANT] ๐Ÿ’ก Use LiteLLM Proxy with Langchain (Python, JS), OpenAI SDK (Python, JS) Anthropic SDK, Mistral SDK, LlamaIndex, Instructor, Curl

import openai # openai v1.0.0+
client = openai.OpenAI(api_key="anything",base_url="http://0.0.0.0:4000") # set proxy to base_url
# request sent to model set on litellm proxy, `litellm --model`
response = client.chat.completions.create(model="gpt-3.5-turbo", messages = [
    {
        "role": "user",
        "content": "this is a test request, write a short poem"
    }
])

print(response)

Proxy Key Management (Docs)

Connect the proxy with a Postgres DB to create proxy keys

# Get the code
git clone https://github.com/BerriAI/litellm

# Go to folder
cd litellm

# Add the master key - you can change this after setup
echo 'LITELLM_MASTER_KEY="sk-1234"' > .env

# Add the litellm salt key - you cannot change this after adding a model
# It is used to encrypt / decrypt your LLM API Key credentials
# We recommend - https://1password.com/password-generator/
# password generator to get a random hash for litellm salt key
echo 'LITELLM_SALT_KEY="sk-1234"' >> .env

source .env

# Start
docker compose up

UI on /ui on your proxy server ui_3

Set budgets and rate limits across multiple projects POST /key/generate

Request

curl 'http://0.0.0.0:4000/key/generate' \
--header 'Authorization: Bearer sk-1234' \
--header 'Content-Type: application/json' \
--data-raw '{"models": ["gpt-3.5-turbo", "gpt-4", "claude-2"], "duration": "20m","metadata": {"user": "ishaan@berri.ai", "team": "core-infra"}}'

Expected Response

{
    "key": "sk-kdEXbIqZRwEeEiHwdg7sFA", # Bearer token
    "expires": "2023-11-19T01:38:25.838000+00:00" # datetime object
}

Supported Providers (Docs)

Provider Completion Streaming Async Completion Async Streaming Async Embedding Async Image Generation
openai โœ… โœ… โœ… โœ… โœ… โœ…
Meta - Llama API โœ… โœ… โœ… โœ…
azure โœ… โœ… โœ… โœ… โœ… โœ…
AI/ML API โœ… โœ… โœ… โœ… โœ… โœ…
aws - sagemaker โœ… โœ… โœ… โœ… โœ…
aws - bedrock โœ… โœ… โœ… โœ… โœ…
google - vertex_ai โœ… โœ… โœ… โœ… โœ… โœ…
google - palm โœ… โœ… โœ… โœ…
google AI Studio - gemini โœ… โœ… โœ… โœ…
mistral ai api โœ… โœ… โœ… โœ… โœ…
cloudflare AI Workers โœ… โœ… โœ… โœ…
CompactifAI โœ… โœ… โœ… โœ…
cohere โœ… โœ… โœ… โœ… โœ…
anthropic โœ… โœ… โœ… โœ…
empower โœ… โœ… โœ… โœ…
huggingface โœ… โœ… โœ… โœ… โœ…
replicate โœ… โœ… โœ… โœ…
together_ai โœ… โœ… โœ… โœ…
openrouter โœ… โœ… โœ… โœ…
ai21 โœ… โœ… โœ… โœ…
baseten โœ… โœ… โœ… โœ…
vllm โœ… โœ… โœ… โœ…
nlp_cloud โœ… โœ… โœ… โœ…
aleph alpha โœ… โœ… โœ… โœ…
petals โœ… โœ… โœ… โœ…
ollama โœ… โœ… โœ… โœ… โœ…
deepinfra โœ… โœ… โœ… โœ…
perplexity-ai โœ… โœ… โœ… โœ…
Groq AI โœ… โœ… โœ… โœ…
Deepseek โœ… โœ… โœ… โœ…
anyscale โœ… โœ… โœ… โœ…
IBM - watsonx.ai โœ… โœ… โœ… โœ… โœ…
voyage ai โœ…
xinference [Xorbits Inference] โœ…
FriendliAI โœ… โœ… โœ… โœ…
Galadriel โœ… โœ… โœ… โœ…
GradientAI โœ… โœ…
Novita AI โœ… โœ… โœ… โœ…
Featherless AI โœ… โœ… โœ… โœ…
Nebius AI Studio โœ… โœ… โœ… โœ… โœ…
Heroku โœ… โœ…
OVHCloud AI Endpoints โœ… โœ…
CometAPI โœ… โœ… โœ… โœ… โœ… โœ…

Read the Docs

Run in Developer mode

Services

  1. Setup .env file in root
  2. Run dependant 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 pip install -e ".[all]"
  4. Start proxy backend python litellm/proxy_cli.py

Frontend

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

Enterprise

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

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

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

Why did we build this

  • Need for simplicity: Our code started to get extremely complicated managing & translating calls between Azure, OpenAI and Cohere.

Contributors

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.52.16 Nov 26, 2024
1.52.15 Nov 25, 2024
1.52.14 Nov 22, 2024
1.52.12 Nov 21, 2024
1.52.11 Nov 20, 2024
1.52.10 Nov 18, 2024
1.52.9 Nov 16, 2024
1.52.8 Nov 14, 2024
1.52.6 Nov 13, 2024
1.52.5 Nov 12, 2024
1.52.4 Nov 11, 2024
1.52.3 Nov 08, 2024
1.52.2 Nov 08, 2024
1.52.1 Nov 07, 2024
1.52.0 Nov 05, 2024
1.51.3 Nov 01, 2024
1.51.2 Oct 30, 2024
1.51.1 Oct 29, 2024
1.51.0 Oct 26, 2024
1.50.4 Oct 24, 2024
1.50.2 Oct 22, 2024
1.50.1 Oct 21, 2024
1.50.0 Oct 19, 2024
1.49.7 Oct 18, 2024
1.49.6 Oct 17, 2024
1.49.5 Oct 16, 2024
1.49.4 Oct 15, 2024
1.49.3 Oct 14, 2024
1.49.2 Oct 12, 2024
1.49.1 Oct 11, 2024
1.49.0 Oct 09, 2024
1.48.19 Oct 08, 2024
1.48.18 Oct 07, 2024
1.48.17 Oct 06, 2024
1.48.16 Oct 05, 2024
1.48.15 Oct 05, 2024
1.48.14 Oct 04, 2024
1.48.12 Oct 04, 2024
1.48.11 Oct 03, 2024
1.48.10 Oct 03, 2024
1.48.9 Oct 02, 2024
1.48.8 Oct 01, 2024
1.48.7 Sep 30, 2024
1.48.6 Sep 29, 2024
1.48.5 Sep 28, 2024
1.48.4 Sep 28, 2024
1.48.3 Sep 27, 2024
1.48.2 Sep 26, 2024
1.48.1 Sep 25, 2024
1.48.0 Sep 24, 2024
1.47.2 Sep 23, 2024
1.47.1 Sep 22, 2024
1.47.0 Sep 21, 2024
1.46.8 Sep 20, 2024
1.46.7 Sep 20, 2024
1.46.6 Sep 19, 2024
1.46.5 Sep 18, 2024
1.46.4 Sep 18, 2024
1.46.2 Sep 18, 2024
1.46.1 Sep 17, 2024
1.46.0 Sep 15, 2024
1.45.0 Sep 13, 2024
1.44.28 Sep 13, 2024
1.44.27 Sep 12, 2024
1.44.26 Sep 12, 2024
1.44.25 Sep 12, 2024
1.44.24 Sep 11, 2024
1.44.23 Sep 10, 2024
1.44.22 Sep 08, 2024
1.44.21 Sep 07, 2024
1.44.19 Sep 06, 2024
1.44.18 Sep 05, 2024
1.44.17 Sep 05, 2024
1.44.16 Sep 04, 2024
1.44.15 Sep 03, 2024
1.44.14 Sep 01, 2024
1.44.13 Aug 31, 2024
1.44.12 Aug 30, 2024
1.44.11 Aug 30, 2024
1.44.10 Aug 29, 2024
1.44.9 Aug 29, 2024
1.44.8 Aug 28, 2024
1.44.7 Aug 27, 2024
1.44.6 Aug 26, 2024
1.44.5 Aug 24, 2024
1.44.4 Aug 23, 2024
1.44.3 Aug 23, 2024
1.44.2 Aug 22, 2024
1.44.1 Aug 21, 2024
1.43.19 Aug 20, 2024
1.43.18 Aug 18, 2024
1.43.17 Aug 17, 2024
1.43.16 Aug 17, 2024
1.43.15 Aug 16, 2024
1.43.13 Aug 15, 2024
1.43.12 Aug 14, 2024
1.43.10 Aug 14, 2024
1.43.9 Aug 13, 2024
1.43.7 Aug 10, 2024
1.43.6 Aug 10, 2024
1.43.5 Aug 10, 2024
1.43.4 Aug 09, 2024
1.43.3 Aug 08, 2024
1.43.2 Aug 08, 2024
1.43.1 Aug 07, 2024
1.43.0 Aug 06, 2024
1.42.12 Aug 04, 2024
1.42.11 Aug 02, 2024
1.42.10 Aug 02, 2024
1.42.9 Aug 02, 2024
1.42.8 Aug 01, 2024
1.42.7 Aug 01, 2024
1.42.6 Jul 31, 2024
1.42.5 Jul 28, 2024
1.42.4 Jul 27, 2024
1.42.3 Jul 26, 2024
1.42.2 Jul 26, 2024
1.42.1 Jul 25, 2024
1.42.0 Jul 24, 2024
1.41.28 Jul 24, 2024
1.41.27 Jul 23, 2024
1.41.26 Jul 22, 2024
1.41.25 Jul 20, 2024
1.41.24 Jul 18, 2024
1.41.23 Jul 16, 2024
1.41.22 Jul 15, 2024
1.41.21 Jul 14, 2024
1.41.20 Jul 13, 2024
1.41.19 Jul 12, 2024
1.41.18 Jul 12, 2024
1.41.17 Jul 11, 2024
1.41.15 Jul 11, 2024
1.41.15.dev2 Jul 10, 2024
1.41.14 Jul 09, 2024
1.41.13 Jul 09, 2024
1.41.12 Jul 08, 2024
1.41.11 Jul 07, 2024
1.41.8 Jul 06, 2024
1.41.7 Jul 05, 2024
1.41.6 Jul 04, 2024
1.41.5 Jul 04, 2024
1.41.4 Jul 03, 2024
1.41.3 Jul 02, 2024
1.41.2 Jun 30, 2024
1.41.1 Jun 29, 2024
1.41.0 Jun 29, 2024
1.40.31 Jun 29, 2024
1.40.29 Jun 28, 2024
1.40.28 Jun 27, 2024
1.40.27 Jun 26, 2024
1.40.26 Jun 25, 2024
1.40.25 Jun 23, 2024
1.40.24 Jun 23, 2024
1.40.22 Jun 22, 2024
1.40.21 Jun 21, 2024
1.40.20 Jun 21, 2024
1.40.19 Jun 20, 2024
1.40.17 Jun 19, 2024
1.40.16 Jun 18, 2024
1.40.15 Jun 16, 2024
1.40.14 Jun 15, 2024
1.40.13 Jun 14, 2024
1.40.12 Jun 14, 2024
1.40.11 Jun 14, 2024
1.40.10 Jun 13, 2024
1.40.9 Jun 12, 2024
1.40.8 Jun 11, 2024
1.40.7 Jun 08, 2024
1.40.6 Jun 08, 2024
1.40.5 Jun 07, 2024
1.40.4 Jun 06, 2024
1.40.3 Jun 05, 2024
1.40.2 Jun 05, 2024
1.40.1 Jun 04, 2024
1.40.1.dev1 Jun 03, 2024
1.40.0 Jun 02, 2024
1.40.0.dev1 Jun 01, 2024
1.39.6 Jun 01, 2024
1.39.5 May 31, 2024
1.39.5.dev1 May 31, 2024
1.39.4 May 30, 2024
1.39.3 May 30, 2024
1.39.2 May 29, 2024
1.38.12 May 28, 2024
1.38.11 May 28, 2024
1.38.10 May 26, 2024
1.38.8 May 26, 2024
1.38.7 May 26, 2024
1.38.5 May 25, 2024
1.38.4 May 25, 2024
1.38.3 May 25, 2024
1.38.2 May 24, 2024
1.38.1 May 23, 2024
1.38.0 May 23, 2024
1.37.20 May 22, 2024
1.37.19 May 21, 2024
1.37.17 May 20, 2024
1.37.16 May 18, 2024
1.37.14 May 17, 2024
1.37.13 May 17, 2024
1.37.12 May 16, 2024
1.37.11 May 16, 2024
1.37.10 May 16, 2024
1.37.9 May 14, 2024
1.37.7 May 13, 2024
1.37.6 May 13, 2024
1.37.5 May 12, 2024
1.37.3 May 11, 2024
1.37.2 May 10, 2024
1.37.0 May 09, 2024
1.36.4 May 09, 2024
1.36.3 May 08, 2024
1.36.2 May 08, 2024
1.36.1 May 07, 2024
1.36.0 May 06, 2024
1.35.38 May 04, 2024
1.35.37 May 03, 2024
1.35.36 May 02, 2024
1.35.35 May 02, 2024
1.35.34 May 01, 2024
1.35.33 May 01, 2024
1.35.32 Apr 29, 2024
1.35.31 Apr 28, 2024
1.35.30 Apr 27, 2024
1.35.29 Apr 26, 2024
1.35.28 Apr 26, 2024
1.35.27.dev1 Apr 25, 2024
1.35.26 Apr 25, 2024
1.35.25 Apr 25, 2024
1.35.24 Apr 24, 2024
1.35.23 Apr 24, 2024
1.35.22 Apr 24, 2024
1.35.21 Apr 24, 2024
1.35.20 Apr 23, 2024
1.35.19 Apr 22, 2024
1.35.18 Apr 22, 2024
1.35.17 Apr 20, 2024
1.35.16 Apr 20, 2024
1.35.15 Apr 19, 2024
1.35.14 Apr 19, 2024
1.35.13 Apr 19, 2024
1.35.12 Apr 18, 2024
1.35.11 Apr 18, 2024
1.35.10 Apr 17, 2024
1.35.8 Apr 16, 2024
1.35.7 Apr 16, 2024
1.35.6 Apr 15, 2024
1.35.5 Apr 14, 2024
1.35.4 Apr 13, 2024
1.35.3 Apr 13, 2024
1.35.2 Apr 12, 2024
1.35.1 Apr 11, 2024
1.35.0 Apr 11, 2024
1.35.0.dev1 Mar 27, 2024
1.34.42 Apr 11, 2024
1.34.41 Apr 11, 2024
1.34.40 Apr 10, 2024
1.34.39 Apr 10, 2024
1.34.38 Apr 09, 2024
1.34.37 Apr 09, 2024
1.34.36 Apr 09, 2024
1.34.35 Apr 08, 2024
1.34.34 Apr 07, 2024
1.34.33 Apr 07, 2024
1.34.32 Apr 07, 2024
1.34.29 Apr 06, 2024
1.34.28 Apr 05, 2024
1.34.27 Apr 05, 2024
1.34.26 Apr 05, 2024
1.34.25 Apr 04, 2024
1.34.24.dev1 Apr 03, 2024
1.34.22 Apr 03, 2024
1.34.22.dev1 Apr 02, 2024
1.34.21 Apr 02, 2024
1.34.20 Apr 02, 2024
1.34.19 Apr 02, 2024
1.34.18 Mar 31, 2024
1.34.17 Mar 31, 2024
1.34.17.dev1 Mar 30, 2024
1.34.16 Mar 30, 2024
1.34.14 Mar 30, 2024
1.34.13 Mar 29, 2024
1.34.12 Mar 29, 2024
1.34.11 Mar 28, 2024
1.34.10 Mar 28, 2024
1.34.8 Mar 28, 2024
1.34.6 Mar 27, 2024
1.34.5 Mar 27, 2024
1.34.4 Mar 26, 2024
1.34.3 Mar 26, 2024
1.34.1 Mar 25, 2024
1.34.1.dev1 Mar 25, 2024
1.34.0 Mar 24, 2024
1.33.9 Mar 24, 2024
1.33.8 Mar 23, 2024
1.33.7 Mar 23, 2024
1.33.5.dev1 Mar 23, 2024
1.33.4 Mar 22, 2024
1.33.3 Mar 22, 2024
1.33.2 Mar 22, 2024
1.33.1 Mar 21, 2024
1.33.1.dev1 Mar 21, 2024
1.33.0 Mar 21, 2024
1.32.9 Mar 21, 2024
1.32.7 Mar 20, 2024
1.32.5.dev1 Mar 20, 2024
1.32.4 Mar 19, 2024
1.32.3 Mar 19, 2024
1.32.1 Mar 17, 2024
1.31.17 Mar 17, 2024
1.31.16 Mar 16, 2024
1.31.15 Mar 15, 2024
1.31.15.dev2 Mar 16, 2024
1.31.14 Mar 15, 2024
1.31.14.dev9 Mar 15, 2024
1.31.14.dev8 Mar 15, 2024
1.31.14.dev6 Mar 15, 2024
1.31.14.dev5 Mar 15, 2024
1.31.14.dev4 Mar 15, 2024
1.31.14.dev3 Mar 15, 2024
1.31.14.dev2 Mar 15, 2024
1.31.13 Mar 15, 2024
1.31.13.dev10 Mar 15, 2024
1.31.13.dev3 Mar 15, 2024
1.31.13.dev2 Mar 15, 2024
1.31.13.dev1 Mar 15, 2024
1.31.12 Mar 14, 2024
1.31.10 Mar 14, 2024
1.31.9 Mar 14, 2024
1.31.8 Mar 13, 2024
1.31.7 Mar 13, 2024
1.31.6 Mar 13, 2024
1.31.5 Mar 13, 2024
1.31.4 Mar 12, 2024
1.31.3 Mar 12, 2024
1.31.2 Mar 11, 2024
1.31.2.dev10 Mar 12, 2024
1.31.2.dev1 Mar 11, 2024
1.30.7 Mar 10, 2024
1.30.6 Mar 09, 2024
1.30.5 Mar 09, 2024
1.30.4 Mar 09, 2024
1.30.3 Mar 08, 2024
1.30.2 Mar 08, 2024
1.30.1 Mar 07, 2024
1.30.1.dev6 Mar 08, 2024
1.30.1.dev5 Mar 08, 2024
1.30.0 Mar 07, 2024
1.29.7 Mar 07, 2024
1.29.7.dev3 Mar 07, 2024
1.29.6.dev1 Mar 06, 2024
1.29.5 Mar 06, 2024
1.29.4 Mar 06, 2024
1.29.4.dev1 Mar 06, 2024
1.29.3 Mar 06, 2024
1.29.2.dev1 Mar 05, 2024
1.29.1 Mar 05, 2024
1.28.13 Mar 04, 2024
1.28.11 Mar 03, 2024
1.28.10 Mar 03, 2024
1.28.9 Mar 02, 2024
1.28.8 Mar 02, 2024
1.28.7 Mar 01, 2024
1.28.6 Mar 01, 2024
1.28.4 Mar 01, 2024
1.28.4.dev1 Mar 01, 2024
1.28.3 Mar 01, 2024
1.28.2 Mar 01, 2024
1.28.1 Feb 29, 2024
1.28.1.dev1 Mar 01, 2024
1.28.0 Feb 29, 2024
1.27.15 Feb 29, 2024
1.27.14 Feb 28, 2024
1.27.13.dev1 Feb 28, 2024
1.27.10 Feb 27, 2024
1.27.9 Feb 27, 2024
1.27.8 Feb 27, 2024
1.27.7 Feb 27, 2024
1.27.6 Feb 26, 2024
1.27.4 Feb 25, 2024
1.27.3 Feb 25, 2024
1.27.2.dev4 Feb 24, 2024
1.27.2.dev3 Feb 24, 2024
1.27.2.dev2 Feb 24, 2024
1.27.2.dev1 Feb 24, 2024
1.27.1 Feb 24, 2024
1.27.1.dev60 Mar 11, 2024
1.27.1.dev50 Mar 07, 2024
1.27.1.dev40 Mar 06, 2024
1.27.1.dev31 Mar 05, 2024
1.27.1.dev30 Mar 05, 2024
1.27.1.dev11 Feb 29, 2024
1.27.1.dev9 Feb 24, 2024
1.26.14.dev1 Feb 23, 2024
1.26.13 Feb 23, 2024
1.26.11 Feb 23, 2024
1.26.10 Feb 23, 2024
1.26.9 Feb 23, 2024
1.26.8 Feb 22, 2024
1.26.7 Feb 21, 2024
1.26.6 Feb 21, 2024
1.26.5 Feb 21, 2024
1.26.4 Feb 21, 2024
1.26.3 Feb 20, 2024
1.26.2 Feb 20, 2024
1.26.1 Feb 20, 2024
1.26.0 Feb 19, 2024
1.25.2 Feb 18, 2024
1.25.1 Feb 17, 2024
1.25.0 Feb 17, 2024
1.25.0.dev2 Feb 17, 2024
1.24.6 Feb 17, 2024
1.24.5 Feb 16, 2024
1.24.5.dev1 Feb 16, 2024
1.24.3 Feb 16, 2024
1.24.1 Feb 16, 2024
1.24.1.dev1 Feb 16, 2024
1.23.16 Feb 15, 2024
1.23.15 Feb 14, 2024
1.23.14 Feb 14, 2024
1.23.12 Feb 13, 2024
1.23.10 Feb 12, 2024
1.23.9 Feb 11, 2024
1.23.8 Feb 10, 2024
1.23.7 Feb 10, 2024
1.23.5 Feb 09, 2024
1.23.4 Feb 09, 2024
1.23.3 Feb 08, 2024
1.23.2 Feb 08, 2024
1.23.1 Feb 08, 2024
1.23.0 Feb 07, 2024
1.22.11 Feb 07, 2024
1.22.10 Feb 07, 2024
1.22.10.dev1 Feb 06, 2024
1.22.9 Feb 06, 2024
1.22.8 Feb 06, 2024
1.22.5 Feb 05, 2024
1.22.3 Feb 04, 2024
1.22.2 Feb 04, 2024
1.21.7 Feb 03, 2024
1.21.6 Feb 03, 2024
1.21.5 Feb 03, 2024
1.21.4 Feb 02, 2024
1.21.4.dev1 Feb 02, 2024
1.21.1 Feb 02, 2024
1.21.0 Feb 02, 2024
1.20.9 Feb 01, 2024
1.20.8 Feb 01, 2024
1.20.7 Jan 31, 2024
1.20.6 Jan 31, 2024
1.20.5 Jan 30, 2024
1.20.3 Jan 30, 2024
1.20.2 Jan 29, 2024
1.20.1 Jan 27, 2024
1.20.0 Jan 27, 2024
1.19.6 Jan 27, 2024
1.19.5 Jan 26, 2024
1.19.4 Jan 26, 2024
1.19.3 Jan 25, 2024
1.19.2 Jan 25, 2024
1.19.1 Jan 25, 2024
1.19.0 Jan 25, 2024
1.18.14.dev8 Feb 13, 2024
1.18.14.dev7 Feb 13, 2024
1.18.14.dev6 Feb 08, 2024
1.18.13 Jan 24, 2024
1.18.13.dev7 Feb 13, 2024
1.18.13.dev5 Feb 06, 2024
1.18.13.dev4 Feb 02, 2024
1.18.13.dev1 Jan 24, 2024
1.18.12 Jan 24, 2024
1.18.11 Jan 23, 2024
1.18.10 Jan 23, 2024
1.18.9 Jan 22, 2024
1.18.8 Jan 20, 2024
1.18.7 Jan 20, 2024
1.18.6 Jan 20, 2024
1.18.5 Jan 19, 2024
1.18.4 Jan 19, 2024
1.18.3 Jan 19, 2024
1.18.2 Jan 18, 2024
1.18.1 Jan 18, 2024
1.18.0 Jan 18, 2024
1.17.18 Jan 18, 2024
1.17.17 Jan 17, 2024
1.17.16 Jan 17, 2024
1.17.15 Jan 17, 2024
1.17.14 Jan 17, 2024
1.17.13 Jan 17, 2024
1.17.12 Jan 17, 2024
1.17.11.dev2 Jan 17, 2024
1.17.11.dev1 Jan 17, 2024
1.17.10 Jan 16, 2024
1.17.9 Jan 16, 2024
1.17.8 Jan 16, 2024
1.17.7 Jan 16, 2024
1.17.6 Jan 15, 2024
1.17.5 Jan 13, 2024
1.17.4 Jan 13, 2024
1.17.3 Jan 12, 2024
1.17.2 Jan 11, 2024
1.17.1 Jan 11, 2024
1.17.0 Jan 10, 2024
1.16.21 Jan 09, 2024
1.16.21.dev3 Jan 12, 2024
1.16.21.dev2 Jan 11, 2024
1.16.21.dev1 Jan 09, 2024
1.16.20 Jan 09, 2024
1.16.19 Jan 08, 2024
1.16.18 Jan 08, 2024
1.16.17 Jan 08, 2024
1.16.16 Jan 06, 2024
1.16.15 Jan 06, 2024
1.16.14 Jan 06, 2024
1.16.12 Jan 03, 2024
1.16.11 Jan 02, 2024
1.16.10 Jan 02, 2024
1.16.9 Jan 02, 2024
1.16.8 Dec 30, 2023
1.16.7 Dec 29, 2023
1.16.6 Dec 29, 2023
1.16.5 Dec 29, 2023
1.16.4 Dec 29, 2023
1.16.3 Dec 28, 2023
1.16.2 Dec 28, 2023
1.16.1 Dec 28, 2023
1.16.0 Dec 28, 2023
1.15.10 Dec 27, 2023
1.15.8 Dec 25, 2023
1.15.7 Dec 23, 2023
1.15.6 Dec 22, 2023
1.15.3 Dec 21, 2023
1.15.2 Dec 21, 2023
1.15.1 Dec 16, 2023
1.15.0 Dec 16, 2023
1.14.10 Dec 16, 2023
1.14.9 Dec 15, 2023
1.14.8 Dec 15, 2023
1.14.7 Dec 15, 2023
1.14.6 Dec 15, 2023
1.14.5 Dec 14, 2023
1.14.5.dev1 Dec 14, 2023
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.13.1 Dec 13, 2023
1.12.9 Dec 13, 2023
1.12.8 Dec 13, 2023
1.12.7 Dec 12, 2023
1.12.6 Dec 12, 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.21 Nov 30, 2023
1.7.19 Nov 30, 2023
1.7.18 Nov 30, 2023
1.7.17 Nov 30, 2023
1.7.16 Nov 30, 2023
1.7.14 Nov 29, 2023
1.7.13 Nov 29, 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.594 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.432 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.408 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

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
aiohttp (>=3.10)
click
fastuuid (>=0.13.0)
httpx (>=0.23.0)
importlib-metadata (>=6.8.0)
jinja2 (<4.0.0,>=3.1.2)
jsonschema (<5.0.0,>=4.22.0)
openai (>=1.99.5)
pydantic (<3.0.0,>=2.5.0)
python-dotenv (>=0.2.0)
tiktoken (>=0.7.0)
tokenizers