Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blockrun_litellm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
from blockrun_litellm.provider import BlockRunLLM, register

__all__ = ["BlockRunLLM", "register", "enable_local_logging"]
__version__ = "0.4.1"
__version__ = "0.4.2"
17 changes: 11 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "blockrun-litellm"
version = "0.4.1"
version = "0.4.2"
description = "LiteLLM adapter for BlockRun — call x402-paid AI models via LiteLLM (custom provider or local OpenAI-compatible proxy)"
readme = "README.md"
license = "MIT"
Expand All @@ -26,17 +26,22 @@ classifiers = [
]

dependencies = [
# >=0.37.0: concurrency-safe Solana payments (per-client signing lock +
# whole-request payment retry) so the shared cached client in _adapter is
# reliable under the proxy's concurrent load. See blockrun-llm 0.37.0.
"blockrun-llm>=0.37.0",
# >=1.4.1: streamed tool calls parse correctly (lenient ChatChunkToolCall;
# earlier SDKs crashed the stream archive with "'dict' object has no
# attribute 'delta'"). Bumping the floor past 1.3.0 also means
# `pip install -U blockrun-litellm` actually pulls the fixed SDK instead of
# leaving an already-satisfied 1.3.0 in place.
# NOTE: bump to >=1.4.2 once that ships — it adds the Solana
# ~/.blockrun/.solana-session auto-load so the sidecar starts without
# SOLANA_WALLET_KEY (parity with Base).
"blockrun-llm>=1.4.1",
"litellm>=1.40.0",
]

[project.optional-dependencies]
# Re-exported here so `pip install 'blockrun-litellm[solana]'` pulls the
# x402 SVM toolchain that SolanaLLMClient needs (x402 SDK + solders).
solana = ["blockrun-llm[solana]>=0.37.0"]
solana = ["blockrun-llm[solana]>=1.4.1"]
proxy = [
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
Expand Down