diff --git a/README.md b/README.md index 0b94d96..273f2c0 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A Python SDK for the [Roe](https://www.roe-ai.com/) API. -> **v1.1.2** - SDK operation coverage is synchronized across Python, +> **v1.1.3** - SDK operation coverage is synchronized across Python, > TypeScript, and Go. See `SDK_EXAMPLES.md` for copy-ready examples and > use cases. diff --git a/SDK_EXAMPLES.md b/SDK_EXAMPLES.md index c8e23ec..818ddc5 100644 --- a/SDK_EXAMPLES.md +++ b/SDK_EXAMPLES.md @@ -641,7 +641,10 @@ from roe import RoeClient client = RoeClient() -result = client.knowledge_base.list() +result = client.knowledge_base.list( + page=1, # optional + page_size=10, # optional +) ``` #### `knowledge_base_create` diff --git a/pyproject.toml b/pyproject.toml index 197dc1b..6eb145f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "roe-ai" -version = "1.1.2" +version = "1.1.3" authors = [ { name = "Roe", email = "founders@roe-ai.com" }, ] diff --git a/uv.lock b/uv.lock index 7a329ce..5942ed7 100644 --- a/uv.lock +++ b/uv.lock @@ -454,7 +454,7 @@ wheels = [ [[package]] name = "roe-ai" -version = "1.1.2" +version = "1.1.3" source = { editable = "." } dependencies = [ { name = "attrs" },