Skip to main content

Build and deploy stateful agents across federated resources.

Project description

Academy: Federated Actors and Agents

PyPI - Version tests pre-commit.ci status

Academy is a modular and extensible middleware for building and deploying stateful actors and autonomous agents across distributed systems and federated research infrastructure. In Academy, you can:

  • ⚙️ Express agent behavior and state in code
  • 📫 Manage inter-agent coordination and asynchronous communication
  • 🌐 Deploy agents across distributed, federated, and heterogeneous resources

Installation

Academy is available on PyPI.

pip install academy-py

Example

Agents in Academy are defined by an Agent class containing @action-decorated methods that can be invoked by users or peer agents and @loop-decorated methods that execute the autonomous control loops of the agent.

The below sensor monitoring agent periodically reads a sensor in the monitor() loop and processes the reading if a threshold is met. Users or agents can invoke the get_last_reading() and set_process_threshold() actions remotely to interact with the monitor agent.

import asyncio
from academy.agent import Agent, action, loop

class SensorMonitorAgent(Agent):
    def __init__(self) -> None:
        super().__init__()
        self.last_reading: float | None = None
        self.process_threshold: float = 1.0

    @action
    async def get_last_reading(self) -> float | None:
        return self.last_reading

    @action
    async def set_process_threshold(self, value: float) -> None:
        self.process_threshold = value

    @loop
    async def monitor(self, shutdown: asyncio.Event) -> None:
        while not shutdown.is_set():
            value = await read_sensor_data()
            self.last_reading = value:
            if value >= self.process_threshold:
                await process_reading(value)
            await asyncio.sleep(1)

Users and agents communicate asynchronously through handles, sending messages to and receiving messages from a mailbox managed by an exchange. The manager abstracts the remote execution and management of agents using executors.

from academy.exchange import LocalExchangeFactory
from academy.manager import Manager
from concurrent.futures import ThreadPoolExecutor

async with await Manager.from_exchange_factory(
    factory=LocalExchangeFactory(),  # Replace with other implementations
    executors=ThreadPoolExecutor(),  # for distributed deployments
) as manager:
    agent_handle = await manager.launch(SensorMonitorAgent)

    await agent_handle.set_process_threshold(2.0)
    await asyncio.sleep(5)
    value = await agent_handle.get_last_reading()
    print(value)

    await manager.shutdown(agent_handle, blocking=True)

Learn more about Academy in Getting Started.

What can be an agent?

In Academy, an agent is a primitive entity that (1) has internal state, (2) performs actions, and (3) communicates with other agents.

This allows for range of agent implementations—Academy agents are building blocks for constructing more complex agent-based systems.

For example, Academy can be use to create the following:

  • Stateful Actors: Actors manage their own data and respond to requests in a distributed system.
  • LLM Agents: Integrate LLM-based reasoning and tool calling.
  • Embodied Agents: The "brain" controlling a robot or simulated entity where action are translated into motor commands or environment manipulations.
  • Computational Units: Encapsulate a specific computational task, like running a simulation, processing data, or training a machine learning model.
  • Orchestrators: Manage or coordinate the activities of other agents, distributing tasks and monitoring progress.
  • Data Interfaces: Interact with external data sources, such as databases, file systems, or sensors, providing a consistent interface for data access and manipulation.

Why Academy?

Academy offers a powerful and flexible framework for building sophisticated, distributed agent-based systems, particularly well-suited for the complexities of scientific applications. Here's what makes Academy valuable:

  • Stateful Agents: Academy enables agents to maintain state, which is crucial for managing long-running processes, tracking context across steps, and implementing agents that need to "remember" information.
  • Agent Autonomy: Academy allows agents to have autonomous control loops, empowering them to make decisions, react to events, and execute tasks independently.
  • Flexible Deployment: Academy provides tools for managing agent deployment, communication, and coordination in complex environments such that applications can leverage heterogeneous, distributed, and federated resources.
  • Foundation for Sophisticated Applications: Academy primitives offer a strong foundation for building highly specialized and sophisticated agent-based systems that go beyond standard LLM use cases, allowing for fine-grained control and optimization tailored to specific scientific applications.

Citation

The Academy preprint is available on arXiv.

@misc{pauloski2026academy,
    title={Empowering Scientific Workflows with Federated Agents},
    author={Alok Kamatar and J. Gregory Pauloski and Yadu Babuji and Ryan Chard and Mansi Sakarvadia and Daniel Babnigg and Kyle Chard and Ian Foster},
    archiveprefix = {arXiv},
    eprint = {2505.05428},
    primaryclass = {cs.MA},
    url = {https://arxiv.org/abs/2505.05428},
    year = {2026}
}

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

academy_py-0.5.0.tar.gz (531.5 kB view details)

Uploaded Source

Built Distribution

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

academy_py-0.5.0-py3-none-any.whl (120.3 kB view details)

Uploaded Python 3

File details

Details for the file academy_py-0.5.0.tar.gz.

File metadata

  • Download URL: academy_py-0.5.0.tar.gz
  • Upload date:
  • Size: 531.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for academy_py-0.5.0.tar.gz
Algorithm Hash digest
SHA256 94ffa1d474057c5e3b1537f3c6a6de584e19f7dc739a55db3e2c945400e2543b
MD5 4755e8e114645307a031ac5187efff83
BLAKE2b-256 a9b58060f36b53eded29dde5f7efc38565558a6f8ab1a6b914fbb89dbc3ff91d

See more details on using hashes here.

Provenance

The following attestation bundles were made for academy_py-0.5.0.tar.gz:

Publisher: publish.yml on academy-agents/academy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file academy_py-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: academy_py-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 120.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for academy_py-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5c1992e5f7cbea39085492d6a9bec2b39d4a5b88a976b39574f7025d20d6cbb7
MD5 f865fc95098cf4abb2a3d38163cfdbb5
BLAKE2b-256 9ee60427d626505934d4d475839ae638272ccd3b980524caf84237cb14ecb6a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for academy_py-0.5.0-py3-none-any.whl:

Publisher: publish.yml on academy-agents/academy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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