Skip to content

Commit b0c10e2

Browse files
authored
Merge pull request #319 from ai-agent-assembly/v0.0.1/AAASM-4728/bump_sdk_rc6
[AAASM-4728] ⬆️ (examples): Bump SDK pins to v0.0.1-rc.6
2 parents 4c36338 + 8551ef2 commit b0c10e2

95 files changed

Lines changed: 603 additions & 471 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/verify-live.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
python-version: "3.13" # cp313 wheel gap (AAASM-4446) is part of what this lane must catch
7676

7777
- name: Install the real published SDK (no shim)
78-
run: pip install --pre "agent-assembly==0.0.1rc5"
78+
run: pip install --pre "agent-assembly==0.0.1rc6"
7979

8080
- name: Install and start the real aasm gateway
8181
run: bash .github/scripts/start-aasm.sh

go/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<!-- Edit metadata/sdk-versions.yaml and re-run the generator. -->
66
| Requirement | Version |
77
|---|---|
8-
| Agent Assembly Go SDK (`github.com/ai-agent-assembly/go-sdk`) | v0.0.1-rc.5 |
8+
| Agent Assembly Go SDK (`github.com/ai-agent-assembly/go-sdk`) | v0.0.1-rc.6 |
99

1010
Install:
1111

1212
```bash
13-
go get github.com/ai-agent-assembly/go-sdk@v0.0.1-rc.5
13+
go get github.com/ai-agent-assembly/go-sdk@v0.0.1-rc.6
1414
```
1515
<!-- END GENERATED: sdk-install -->
1616

@@ -30,7 +30,7 @@ All examples use the [`github.com/ai-agent-assembly/go-sdk`](https://pkg.go.dev/
3030
## Prerequisites
3131

3232
- Go >= 1.26
33-
- Agent Assembly Go SDK v0.0.1-rc.5
33+
- Agent Assembly Go SDK v0.0.1-rc.6
3434

3535
A live gateway is **not required** to run any of these examples — each uses an
3636
offline mock `GovernanceClient` by default so you can explore governance behavior

go/basic-agent/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<!-- Edit metadata/sdk-versions.yaml and re-run the generator. -->
66
| Requirement | Version |
77
|---|---|
8-
| Agent Assembly Go SDK (`github.com/ai-agent-assembly/go-sdk`) | v0.0.1-rc.5 |
8+
| Agent Assembly Go SDK (`github.com/ai-agent-assembly/go-sdk`) | v0.0.1-rc.6 |
99

1010
Install:
1111

1212
```bash
13-
go get github.com/ai-agent-assembly/go-sdk@v0.0.1-rc.5
13+
go get github.com/ai-agent-assembly/go-sdk@v0.0.1-rc.6
1414
```
1515
<!-- END GENERATED: sdk-install -->
1616

@@ -29,7 +29,7 @@ Minimal Go example showing how to initialize the Agent Assembly Go SDK and execu
2929
| Requirement | Version |
3030
|---|---|
3131
| Go | >= 1.26 |
32-
| Agent Assembly Go SDK | v0.0.1-rc.5 |
32+
| Agent Assembly Go SDK | v0.0.1-rc.6 |
3333

3434
A live Agent Assembly gateway is **not required** to run this example. It uses an
3535
offline mock `GovernanceClient` by default. To use a real gateway, replace `mockClient`

go/basic-agent/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module example.com/basic-agent
22

33
go 1.26.0
44

5-
require github.com/ai-agent-assembly/go-sdk v0.0.1-rc.5
5+
require github.com/ai-agent-assembly/go-sdk v0.0.1-rc.6
66

77
require (
88
github.com/cespare/xxhash/v2 v2.3.0 // indirect

go/basic-agent/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.5 h1:1DYzjofIO1kFrvogiwtAI4FzNI67our/X1Enw8bhND8=
2-
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.5/go.mod h1:Itj0i/4Tev8Ln2VkSn2udJqdCZSf6Vx4FKPrN/HdnP8=
1+
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.6 h1:Ju+fGlzBB527PWEhdxPo8fqBQX3qvmOMOKpF7RC2UIg=
2+
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.6/go.mod h1:2/0b0FuMC3o8Kq6g+fByI5wpeNL/rOF2IgQ31jAj3s0=
33
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
44
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
55
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

go/cli-runtime-integration/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<!-- Edit metadata/sdk-versions.yaml and re-run the generator. -->
66
| Requirement | Version |
77
|---|---|
8-
| Agent Assembly Go SDK (`github.com/ai-agent-assembly/go-sdk`) | v0.0.1-rc.5 |
8+
| Agent Assembly Go SDK (`github.com/ai-agent-assembly/go-sdk`) | v0.0.1-rc.6 |
99

1010
Install:
1111

1212
```bash
13-
go get github.com/ai-agent-assembly/go-sdk@v0.0.1-rc.5
13+
go get github.com/ai-agent-assembly/go-sdk@v0.0.1-rc.6
1414
```
1515
<!-- END GENERATED: sdk-install -->
1616

@@ -29,7 +29,7 @@ Go example showing how to integrate the `aasm` CLI runtime sidecar into a Go age
2929
| Requirement | Version |
3030
|---|---|
3131
| Go | >= 1.26 |
32-
| Agent Assembly Go SDK | v0.0.1-rc.5 |
32+
| Agent Assembly Go SDK | v0.0.1-rc.6 |
3333
| `aasm` binary | Optional — example runs in fallback mode without it |
3434

3535
### Install `aasm` (optional)

go/cli-runtime-integration/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module example.com/cli-runtime-integration
22

33
go 1.26.0
44

5-
require github.com/ai-agent-assembly/go-sdk v0.0.1-rc.5
5+
require github.com/ai-agent-assembly/go-sdk v0.0.1-rc.6
66

77
require (
88
github.com/cespare/xxhash/v2 v2.3.0 // indirect

go/cli-runtime-integration/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.5 h1:1DYzjofIO1kFrvogiwtAI4FzNI67our/X1Enw8bhND8=
2-
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.5/go.mod h1:Itj0i/4Tev8Ln2VkSn2udJqdCZSf6Vx4FKPrN/HdnP8=
1+
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.6 h1:Ju+fGlzBB527PWEhdxPo8fqBQX3qvmOMOKpF7RC2UIg=
2+
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.6/go.mod h1:2/0b0FuMC3o8Kq6g+fByI5wpeNL/rOF2IgQ31jAj3s0=
33
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
44
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
55
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

go/langchaingo/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<!-- Edit metadata/sdk-versions.yaml and re-run the generator. -->
66
| Requirement | Version |
77
|---|---|
8-
| Agent Assembly Go SDK (`github.com/ai-agent-assembly/go-sdk`) | v0.0.1-rc.5 |
8+
| Agent Assembly Go SDK (`github.com/ai-agent-assembly/go-sdk`) | v0.0.1-rc.6 |
99

1010
Install:
1111

1212
```bash
13-
go get github.com/ai-agent-assembly/go-sdk@v0.0.1-rc.5
13+
go get github.com/ai-agent-assembly/go-sdk@v0.0.1-rc.6
1414
```
1515
<!-- END GENERATED: sdk-install -->
1616

@@ -33,7 +33,7 @@ agent's tool calls with Agent Assembly.
3333
| Requirement | Version |
3434
|---|---|
3535
| Go | >= 1.26 |
36-
| Agent Assembly Go SDK | v0.0.1-rc.5 |
36+
| Agent Assembly Go SDK | v0.0.1-rc.6 |
3737
| LangChainGo | v0.1.14 |
3838

3939
No live gateway and no LLM API key are required. Policy rules are applied by an

go/langchaingo/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module example.com/langchaingo
33
go 1.26.0
44

55
require (
6-
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.5
6+
github.com/ai-agent-assembly/go-sdk v0.0.1-rc.6
77
github.com/tmc/langchaingo v0.1.14
88
)
99

0 commit comments

Comments
 (0)