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 docs/02-quick-start/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ platform during `postinstall`, so there is no extra build step for typical consu
The current release line is `0.0.1-beta.x`, published under the npm `beta`
dist-tag. The public surface (`initAssembly`, `withAssembly`) is stabilizing but may
change between pre-releases. Pin an exact version for reproducible installs:
`npm install @agent-assembly/sdk@0.0.1-beta.5`.
`npm install @agent-assembly/sdk@0.0.1-rc.1`.
:::

## 2. Make sure a gateway is reachable
Expand Down
2 changes: 1 addition & 1 deletion docs/09-examples/custom-tool-policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ the policy first.

## The framework / library

None. The example depends only on `@agent-assembly/sdk` (version `0.0.1-beta.5`
None. The example depends only on `@agent-assembly/sdk` (version `0.0.1-rc.1`
in its `package.json`). It runs fully offline β€” no gateway and no `@langchain/core`.

## How it works
Expand Down
2 changes: 1 addition & 1 deletion docs/09-examples/langchain-js-basic-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on every tool call the agent makes.
## The framework / library

[LangChain.js](https://js.langchain.com)-style agent. The example depends only on
`@agent-assembly/sdk` (version `0.0.1-beta.5`); it deliberately avoids
`@agent-assembly/sdk` (version `0.0.1-rc.1`); it deliberately avoids
`@langchain/core` so it runs fully offline in CI with no API keys.

## How it works
Expand Down
2 changes: 1 addition & 1 deletion docs/09-examples/langgraph-js.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ originates β€” including from inside a graph node.
## The framework / library

A hand-rolled [LangGraph.js](https://langchain-ai.github.io/langgraphjs/)-style graph.
The example depends only on `@agent-assembly/sdk` (version `0.0.1-beta.5`).
The example depends only on `@agent-assembly/sdk` (version `0.0.1-rc.1`).

:::note Why a hand-rolled graph instead of `@langchain/langgraph`
The real `@langchain/langgraph` package transitively installs `@langchain/core`. These
Expand Down
2 changes: 1 addition & 1 deletion docs/09-examples/mastra.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ wrapping their `execute` through `withAssembly`.

[Mastra](https://mastra.ai) β€” the real `@mastra/core` package (version `^1.0.0` in
`package.json`), plus `zod` (`^3.25.76`) for the tool schemas and
`@agent-assembly/sdk` (version `0.0.1-beta.5`). It runs fully offline β€” no provider
`@agent-assembly/sdk` (version `0.0.1-rc.1`). It runs fully offline β€” no provider
key and no live LLM.

## How it works
Expand Down
2 changes: 1 addition & 1 deletion docs/09-examples/openai-node-tool-policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dispatched through `withAssembly`, so every dispatch is policy-checked before it
## The framework / library

OpenAI function-calling format (tool schemas), used without a live OpenAI client.
The example depends only on `@agent-assembly/sdk` (version `0.0.1-beta.5`) and runs
The example depends only on `@agent-assembly/sdk` (version `0.0.1-rc.1`) and runs
fully offline β€” no gateway and no `@langchain/core`.

## How it works
Expand Down
2 changes: 1 addition & 1 deletion docs/09-examples/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ can focus on what each example actually demonstrates.
- **pnpm** β€” install via `npm install -g pnpm`.

Every example pins `@agent-assembly/sdk` (the [`node-sdk`](https://github.com/ai-agent-assembly/node-sdk)
package, version `0.0.1-beta.5` at the time of writing) as its only required
package, version `0.0.1-rc.1` at the time of writing) as its only required
dependency. The framework-specific examples add one extra package each
(`@mastra/core` for Mastra, `ai` for the Vercel AI SDK).

Expand Down
2 changes: 1 addition & 1 deletion docs/09-examples/vercel-ai.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ top by wrapping the tool map.

[Vercel AI SDK](https://sdk.vercel.ai) β€” the real `ai` package (version `^6.0.0` in
`package.json`), plus `zod` (`^3.25.76`) for input schemas and `@agent-assembly/sdk`
(version `0.0.1-beta.5`). It runs fully offline β€” no provider key and no live LLM.
(version `0.0.1-rc.1`). It runs fully offline β€” no provider key and no live LLM.

## How it works

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agent-assembly/sdk",
"version": "0.0.1-beta.5",
"version": "0.0.1-rc.1",
"description": "TypeScript SDK for Agent Assembly",
"license": "Apache-2.0",
"type": "module",
Expand Down
Loading