Skip to content

Commit 736f5ef

Browse files
Release 2.11.2
1 parent d445957 commit 736f5ef

29 files changed

+1378
-175
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ client.mcp_server.call_tools(
3333

3434
## Async Client
3535

36-
The SDK also exports an `async` client so that you can make non-blocking calls to our API.
36+
The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
3737

3838
```python
3939
import asyncio
@@ -140,7 +140,7 @@ from klavis import Klavis
140140
client = Klavis(
141141
...,
142142
httpx_client=httpx.Client(
143-
proxies="http://my.test.proxy.example.com",
143+
proxy="http://my.test.proxy.example.com",
144144
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
145145
),
146146
)

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,18 @@ name = "klavis"
33

44
[tool.poetry]
55
name = "klavis"
6-
version = "2.11.1"
6+
version = "2.11.2"
77
description = ""
88
readme = "README.md"
99
authors = []
10-
keywords = []
10+
keywords = [
11+
"mcp",
12+
"model-context-protocol",
13+
"router",
14+
"ai",
15+
"llm",
16+
"tools"
17+
]
1118
license = "MIT"
1219
classifiers = [
1320
"Intended Audience :: Developers",
@@ -31,14 +38,16 @@ packages = [
3138
{ include = "klavis", from = "src"}
3239
]
3340

34-
[project.urls]
41+
[tool.poetry.urls]
42+
Documentation = 'https://www.klavis.ai/docs/introduction'
43+
Homepage = 'https://www.klavis.ai/'
3544
Repository = 'https://github.com/Klavis-AI/python-sdk'
3645

3746
[tool.poetry.dependencies]
3847
python = "^3.8"
3948
httpx = ">=0.21.2"
4049
pydantic = ">= 1.9.2"
41-
pydantic-core = "^2.18.2"
50+
pydantic-core = ">=2.18.2"
4251
typing_extensions = ">= 4.0.0"
4352

4453
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)