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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ TESTS_PATH := tests
-include .env

ifndef UV_VERSION
UV_VERSION := 0.11.26
UV_VERSION := 0.12.5
endif

.PHONY: uv_check venv sync update format lint test docs docs-server docs-format docs-lint release
Expand Down
46 changes: 23 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[build-system]
requires = ["uv_build>=0.11.0,<0.12.0"]
requires = ["uv_build>=0.12.0,<0.13.0"]
build-backend = "uv_build"

[project]
name = "draive"
description = "Framework designed to simplify and accelerate the development of LLM-based applications."
version = "0.114.1"
version = "0.115.0"
readme = "README.md"
maintainers = [
{ name = "Kacper Kaliński", email = "kacper.kalinski@miquido.com" },
Expand All @@ -24,26 +24,26 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
license = { file = "LICENSE" }
dependencies = ["numpy~=2.3", "haiway~=0.52.0", "pyyaml~=6.0"]
dependencies = ["numpy~=2.5", "haiway~=0.53.0", "pyyaml~=6.0"]

[project.urls]
Homepage = "https://miquido.com"
Repository = "https://github.com/miquido/draive.git"

[project.optional-dependencies]
cohere = ["cohere~=5.20"]
cohere_bedrock = ["cohere~=5.20", "boto3~=1.41"]
openai = ["openai~=2.9"]
openai_realtime = ["openai[realtime]~=2.9"]
anthropic = ["anthropic~=0.75"]
anthropic_bedrock = ["anthropic[bedrock]~=0.75"]
mistral = ["mistralai~=1.10"]
gemini = ["google-genai~=1.50", "google-api-core"]
ollama = ["ollama~=0.6.1"]
bedrock = ["boto3~=1.41"]
aws = ["boto3~=1.41"]
vllm = ["openai~=2.9"]
mcp = ["mcp~=1.21"]
cohere = ["cohere~=5.21"]
cohere_bedrock = ["cohere~=5.21", "boto3~=1.43"]
openai = ["openai~=3.1"]
openai_realtime = ["openai[realtime]~=3.1"]
anthropic = ["anthropic~=0.122"]
anthropic_bedrock = ["anthropic[bedrock]~=0.122"]
mistral = ["mistralai~=1.12"]
gemini = ["google-genai~=1.75", "google-api-core"]
ollama = ["ollama~=0.6.2"]
bedrock = ["boto3~=1.43"]
aws = ["boto3~=1.43"]
vllm = ["openai~=3.1"]
mcp = ["mcp~=1.29"]
opentelemetry = [
"haiway[opentelemetry]",
"opentelemetry-api",
Expand All @@ -53,25 +53,25 @@ opentelemetry = [
httpx = ["haiway[httpx]", "httpx"]
postgres = ["haiway[postgres]", "asyncpg"]
rabbitmq = ["haiway[rabbitmq]", "pika"]
qdrant = ["qdrant-client~=1.17"]
qdrant = ["qdrant-client~=1.19"]
surrealdb = ["surrealdb~=2.0"]
dev = [
"bandit~=1.9",
"pyright~=1.1",
"pytest~=9.0",
"pytest-asyncio~=1.2",
"pytest-cov~=7.0",
"ruff~=0.15",
"pytest~=9.1",
"pytest-asyncio~=1.4",
"pytest-cov~=7.1",
"ruff~=0.16",
]
docs = [
"mkdocs~=1.6",
"mkdocs-material~=9.6",
"mkdocs-material~=9.7",
"mkdocstrings[python]~=0.30",
"mdformat~=0.7",
"mdformat-gfm~=0.4",
"pymarkdownlnt~=0.9",
"mkdocs-build-plantuml-plugin~=1.11",
"mdformat-mkdocs>=5.1.1",
"mdformat-mkdocs>=5.2.1",
]

[tool.ruff]
Expand Down
Loading
Loading