Download Latest Version v0.4.1 source code.tar.gz (3.4 MB)
Email in envelope

Get an email when there's a new version of Agent Stack

Home / v0.3.5
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2025-10-02 5.4 kB
v0.3.5 source code.tar.gz 2025-10-02 3.4 MB
v0.3.5 source code.zip 2025-10-02 4.0 MB
Totals: 3 Items   7.5 MB 0

Major Features

🔑 Secrets Management

You can now securely manage Secrets directly in the UI and store them in the API. This allows delegating the responsibility of secrets provisioning to the user.

Checkout the docs for some examples.

🏗️ Server-Side Builds (experimental)

We’ve added server-side image builds: - You can now build agents as Github repos - Support for building images in external clusters

These changes are needed to enable dynamically adding github agents via GUI, which will come in next releases.

❗️Breaking Change

Agents history is no longer persisted automatically, you need to store it explicitely in your agent code. We've introduced this change to enable more flexible persistance which is always agent specific.

@server.agent()
async def my_agent(input: Message, context: RunContext):
    await context.store(input)       # Store incoming message

    response = AgentMessage(text="...")
    yield response

    await context.store(response)    # Store outgoing message

What's Changed

Full Changelog: https://github.com/i-am-bee/beeai-platform/compare/v0.3.4...v0.3.5

Source: README.md, updated 2025-10-02