Skip to main content

Firebase for AI Agents - Persistent state management for AI applications

Project description

🤖 AgentState Python SDK

Firebase for AI Agents - Python SDK for persistent agent state management.

PyPI version Python versions License

🚀 Quick Start

Installation

pip install agentstate

Basic Usage

from agentstate import AgentStateClient

# Connect to AgentState server
client = AgentStateClient("http://localhost:8080", namespace="my-app")

# Create an agent
agent = client.create_agent(
    agent_type="chatbot",
    body={"name": "CustomerBot", "status": "active", "conversations": 0},
    tags={"team": "support", "environment": "production"}
)

print(f"Created agent: {agent['id']}")

# Update agent state
updated = client.create_agent(
    agent_type="chatbot", 
    body={"name": "CustomerBot", "status": "busy", "conversations": 5},
    tags={"team": "support", "environment": "production"},
    agent_id=agent['id']  # Update existing agent
)

# Query agents
support_agents = client.query_agents({"team": "support"})
print(f"Found {len(support_agents)} support agents")

# Get specific agent
retrieved = client.get_agent(agent['id'])
print(f"Agent status: {retrieved['body']['status']}")

📚 API Reference

AgentStateClient

__init__(base_url, namespace)

Initialize the client.

  • base_url: AgentState server URL (e.g., "http://localhost:8080")
  • namespace: Namespace for organizing agents (e.g., "production", "staging")

create_agent(agent_type, body, tags=None, agent_id=None)

Create or update an agent.

  • agent_type: Agent category (e.g., "chatbot", "workflow", "classifier")
  • body: Agent state data (dict)
  • tags: Key-value pairs for querying (dict, optional)
  • agent_id: Specific ID for updates (str, optional)

Returns: Agent object with id, type, body, tags, commit_seq, commit_ts

get_agent(agent_id)

Get agent by ID.

  • agent_id: Unique agent identifier

Returns: Agent object

query_agents(tags=None)

Query agents by tags.

  • tags: Tag filters (e.g., {"team": "support", "status": "active"})

Returns: List of matching agent objects

delete_agent(agent_id)

Delete an agent.

  • agent_id: Unique agent identifier

health_check()

Check server health.

Returns: True if healthy, False otherwise

🎯 Usage Examples

Multi-Agent System

from agentstate import AgentStateClient

client = AgentStateClient("http://localhost:8080", "multi-agent-system")

# Create coordinator agent
coordinator = client.create_agent("coordinator", {
    "status": "active",
    "workers": [],
    "tasks_queued": 50
}, {"role": "coordinator"})

# Create worker agents
workers = []
for i in range(3):
    worker = client.create_agent("worker", {
        "status": "idle",
        "processed_today": 0,
        "coordinator_id": coordinator["id"]
    }, {"role": "worker", "coordinator": coordinator["id"]})
    workers.append(worker)

print("Multi-agent system initialized!")

🔗 Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agentstate-1.0.1.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agentstate-1.0.1-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file agentstate-1.0.1.tar.gz.

File metadata

  • Download URL: agentstate-1.0.1.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for agentstate-1.0.1.tar.gz
Algorithm Hash digest
SHA256 12b97ee1ef6af9b78fed5e0c41c97edb0eac7f374c7303f81d94febd6325319f
MD5 a3c06aafd22cea66bcac464a5bf5f610
BLAKE2b-256 e853e6a7cf0bfede7ceb748d03d683e977bc8a42355fc8f328702a82624d200a

See more details on using hashes here.

File details

Details for the file agentstate-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: agentstate-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for agentstate-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2c842ce51c8e58055f2188fed64aa41b9b7d4b4f9d076b5efe99a14a127417b7
MD5 b97319c0dabae68f37c55640aeed1d80
BLAKE2b-256 aa3924b58693ec08362390dfff4aeef89fc8faabc1c3369489e72fd2390734a7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page