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 .github/release-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.3"
".": "0.3.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.0](https://github.com/agntcy/slim-a2a-python/compare/v0.2.3...v0.3.0) (2026-02-17)


### Features

* upgrade to slim-bindings ~= 1.1 ([#6](https://github.com/agntcy/slim-a2a-python/issues/6)) ([6a093eb](https://github.com/agntcy/slim-a2a-python/commit/6a093eb7e3fcc56d1694cfe9e81c254462a6af31))

## [0.2.3](https://github.com/agntcy/slim-a2a-python/compare/v0.2.2...v0.2.3) (2026-01-09)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ identities for authentication and addressing.

## Compile the protobuf

- Refer to this [documentation](xxx) to download the correct slirpc compiler for your system and make sure to have in in $PATH.
- Install [bufbuild](https://buf.build/docs/cli/installation/)
- Refer to this [documentation](https://docs.agntcy.org/slim/slim-slimrpc-compiler/) to download the correct slirpc compiler for your system and make sure to have in in $PATH.
- Install [bufbuild](https://buf.build/docs/cli/installation/)

Run the following from the repo root:

Expand Down
16 changes: 8 additions & 8 deletions examples/travel_planner_agent/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Travel Planner Example

This is the Travel Planner Example from the A2A repo, modified to use SLIM A2A

## Getting started
Expand All @@ -7,12 +8,12 @@ This is the Travel Planner Example from the A2A repo, modified to use SLIM A2A

You can set the required values either via a `.env` file or as environment variables.

| Variable | Required | Default |
|---|---|---|
| `AZURE_OPENAI_API_KEY` | ✅ | — |
| `AZURE_OPENAI_ENDPOINT` | ✅ | — |
| `AZURE_OPENAI_API_VERSION` | ❌ | `2024-08-01-preview` |
| `AZURE_OPENAI_DEPLOYMENT_NAME` | ❌ | `gpt-4o` |
| Variable | Required | Default |
| ------------------------------ | -------- | -------------------- |
| `AZURE_OPENAI_API_KEY` | ✅ | — |
| `AZURE_OPENAI_ENDPOINT` | ✅ | — |
| `AZURE_OPENAI_API_VERSION` | ❌ | `2024-08-01-preview` |
| `AZURE_OPENAI_DEPLOYMENT_NAME` | ❌ | `gpt-4o` |

**Option A:** Create a `.env` file:

Expand All @@ -35,8 +36,7 @@ This is the Travel Planner Example from the A2A repo, modified to use SLIM A2A
```

2. Start SLIM
3.
Download the slimctl version for your system from the [release page.](https://github.com/agntcy/slim/releases/tag/slimctl-v1.0.0)
3. Download the slimctl version for your system from the [release page.](https://github.com/agntcy/slim/releases/tag/slimctl-v1.0.0)

```shell
slimctl slim start --endpoint 127.0.0.1:46357
Expand Down
2 changes: 1 addition & 1 deletion examples/travel_planner_agent/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"model_name": "gpt-4o",
"model_name_env": "AZURE_OPENAI_DEPLOYMENT_NAME",
"temperature": 0.7
}
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[project]
name = "slima2a"
version = "0.2.3"
version = "0.3.0"
description = "A2A protocol over slimrpc"
readme = "README.md"
requires-python = ">=3.10, <4.0"
Expand Down