BindAI Agent
bindai-agent provides the agent layer of the BindAI framework.
It contains the core abstractions for creating, configuring, executing, and coordinating AI agents, including agent builders, configuration, state, delegation, registries, and agent teams.
Features
- Agent creation and execution
- Structured agent configuration
- Agent builders
- Agent state management
- Agent registries
- Agent delegation
- Agent teams and team delegation
- Assistant agents
- YAML-based agent creation
- Agent execution results
Public API
The package exposes the following primary components:
from bindai_agent import (
Agent,
AssistantAgent,
AgentBuilder,
AgentConfiguration,
AgentDelegationTool,
AgentRegistry,
AgentResult,
AgentState,
AgentTeam,
AgentTeamDelegationTool,
create_agent,
create_agent_from_yaml,
)
Basic Usage
Agents can be created using the builder API:
from bindai_agent import Agent
agent = Agent.builder().name("assistant").instructions("You are a helpful AI assistant.").build()
result = agent.run("Explain what BindAI is.")
print(result.output)
Factory Functions
The package also provides factory functions for creating agents:
from bindai_agent import create_agent
agent = create_agent(
name="assistant",
instructions="You are a helpful AI assistant.",
)
Agents can also be created from YAML configuration:
from bindai_agent import create_agent_from_yaml
agent = create_agent_from_yaml("agent.yaml")
Agent Delegation
Agents can delegate work to other agents through the delegation APIs provided by the package.
from bindai_agent import Agent, AgentDelegationTool
# Agent delegation capabilities are provided by the
# BindAI agent execution system.
For more advanced delegation and coordination patterns, see the BindAI documentation.
Agent Teams
AgentTeam and AgentTeamDelegationTool provide the foundation for coordinating multiple agents as part of a team.
from bindai_agent import AgentTeam
Agent teams are part of BindAI's broader multi-agent architecture.
Architecture
bindai-agent sits above the lower-level BindAI core components and provides the agent-specific execution layer.
Conceptually:
BindAI
│
├── bindai-agent
│ ├── Agents
│ ├── Agent configuration
│ ├── Agent state
│ ├── Delegation
│ └── Agent teams
│
└── BindAI Core
├── Execution
├── Context
├── Events
└── Tools
The main bindai package builds on this agent layer together with the other BindAI components.
Documentation
For complete framework documentation, visit the BindAI documentation:
Development
This package is part of the BindAI workspace.
From the repository root:
uv sync
uv run pytest
To run the agent package tests specifically:
uv run pytest packages/bindai-agent/tests -q
License
BindAI is released under the MIT License.
Release files for bindai-agent 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| bindai_agent-0.2.0.tar.gz | 24.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| bindai_agent-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 54.9 kB
Release files / bindai_agent-0.2.0.tar.gz
| Download URL | bindai_agent-0.2.0.tar.gz |
|---|---|
| Size | 24.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
fbe50f636c5aea9cddd7f804089561cb81553637323dddf90ad36368d8ac4419
|
|
BLAKE2b-256 checksum How to use checksums |
f799f806fcea34cda5bf62685240d89722b2a20517a6e2909109008a2c0842e7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.2
|
Release files / bindai_agent-0.2.0-py3-none-any.whl
| Download URL | bindai_agent-0.2.0-py3-none-any.whl |
|---|---|
| Size | 30.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c4602047068ee267e60dffb724c9be34e88a360b400f5185f4c10c817e738bb1
|
|
BLAKE2b-256 checksum How to use checksums |
3fe67d4f46478106d64069c1f2ffbbde4acd28261afa180c80dd0e1d7cbc48f2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.2
|