Skip to main content

A modern, LLM-native agent simulation platform for social science research

Project description

AgentSociety 2

English · 中文

GitHub Stars PyPI Version Python Version License

English Docs Chinese Docs

AgentSociety 2 is a modern, LLM-native agent simulation platform designed for social science research and experimentation.

Features

  • LLM-Native Design: Built from the ground up for LLM-driven agents
  • Flexible Environment System: Modular environment components with hot-pluggable tools
  • Multiple Reasoning Patterns: CodeGen (default), ReAct, Plan-Execute, Two-Tier, and Search routers
  • Scalable Execution: Agents are workspace-bound stateless records driven by Ray Tasks; env / LLM clients / trace / replay handles are passed behind a single ServiceProxy
  • Developer-Friendly: Pythonic API with type hints and comprehensive documentation
  • Experiment Replay: Catalog-driven JSONL replay with DuckDB-powered reads and distributed tracing
  • MCP Support: Model Context Protocol integration for tool extensibility

Installation

pip install agentsociety2

Requirements

  • Python >= 3.11
  • An LLM API key (OpenAI, Anthropic, or any provider supported by LiteLLM)

Quick Start

Before running the examples, set the LLM environment variables described in Configuration. The package validates them when agentsociety2 is imported.

Create Your First Agent

import asyncio
from datetime import datetime
from pathlib import Path
from agentsociety2.env import CodeGenRouter
from agentsociety2.contrib.env import SimpleSocialSpace
from agentsociety2.society import AgentSociety

async def main():
    # Declare agent metadata (id / profile / config); agents are NOT instantiated here.
    # AgentSociety batch-creates their workspaces during init().
    agent_specs = [
        {
            "id": 1,
            "profile": {
                "name": "Alice",
                "age": 28,
                "personality": "friendly and curious",
                "bio": "A software engineer who loves hiking and reading.",
            },
            "config": {},
        }
    ]
    names = [(s["id"], s["profile"]["name"]) for s in agent_specs]

    # Create environment module with agent info
    social_env = SimpleSocialSpace(agent_id_name_pairs=names)

    # Create environment router (in-process CodeGenRouter; production uses an EnvRouterProxy Ray actor)
    env_router = CodeGenRouter(env_modules=[social_env])

    # Create the society
    society = AgentSociety(
        agent_specs=agent_specs,
        agent_class_name="PersonAgent",
        env_router=env_router,
        start_t=datetime.now(),
        run_dir=Path("run"),
    )

    # Initialize (batch-creates agent workspaces, binds the environment)
    await society.init()

    # Query (read-only)
    response = await society.ask("What's your favorite activity?")
    print(f"Agent: {response}")

    # Close the society
    await society.close()

if __name__ == "__main__":
    asyncio.run(main())

Create a Custom Environment Module

from agentsociety2.env import EnvBase, tool

class MyCustomEnvironment(EnvBase):
    """A custom environment module."""

    @tool(readonly=True, kind="observe")
    def get_weather(self, agent_id: int) -> str:
        """Get the current weather for an agent."""
        return "The weather is sunny and 25°C."

    @tool(readonly=False)
    def set_mood(self, agent_id: int, mood: str) -> str:
        """Change the mood of an agent."""
        return f"Agent {agent_id}'s mood is now {mood}."

# Use the custom module
from agentsociety2.env import CodeGenRouter

env_router = CodeGenRouter(env_modules=[MyCustomEnvironment()])

Run a Complete Experiment

import asyncio
from datetime import datetime
from pathlib import Path
from agentsociety2.env import CodeGenRouter
from agentsociety2.contrib.env import SimpleSocialSpace
from agentsociety2.society import AgentSociety

async def main():
    # Declare agent metadata
    agent_specs = [
        {"id": i, "profile": {"name": f"Player{i}", "personality": "friendly"}, "config": {}}
        for i in range(1, 4)
    ]
    names = [(s["id"], s["profile"]["name"]) for s in agent_specs]

    # Create environment router (replay is enabled by default -> run/replay/)
    env_router = CodeGenRouter(env_modules=[SimpleSocialSpace(agent_id_name_pairs=names)])

    # Create the society
    society = AgentSociety(
        agent_specs=agent_specs,
        agent_class_name="PersonAgent",
        env_router=env_router,
        start_t=datetime.now(),
        run_dir=Path("run"),
    )
    await society.init()

    # Query (read-only)
    answer = await society.ask("What are the names of all agents?")
    print(f"Answer: {answer}")

    # Intervene (read-write)
    result = await society.intervene("Set all agents' happiness to 0.8")
    print(f"Result: {result}")

    await society.close()

if __name__ == "__main__":
    asyncio.run(main())

Core Concepts

Agents

Agents are autonomous entities that interact with environments through LLM-powered reasoning:

  • AgentBase: Abstract base class for all agents
  • PersonAgent: Skills-based agent — a lightweight orchestrator whose capabilities are provided by a pluggable skill pipeline
  • Agents support two interaction modes:
    • ask(question, readonly=True): Query without side effects
    • intervene(instruction): Make changes to the environment

Agent Skills

PersonAgent follows a metadata-first, selected-only model. Skills are self-contained directories; the only built-in skill is daily-guidance (daily behavior / needs-decay guidance). The old observation / cognition / plan / memory skills have been removed — those capabilities are now expressed via custom skills + workspace state files + ask_env.

agent/skills/
└── daily-guidance/     # SKILL.md + scripts/daily_guidance.py (pre_step hook)

Each skill has:

  • SKILL.md — YAML frontmatter (name, description, optional script / hooks) + behavior docs
  • scripts/*.py — optional scripts. By default these run in-process via an entrypoint(argv, ctx) contract (millisecond, concurrency-safe), with dynamic-wrapper and subprocess fallbacks.

Skills follow metadata-first selection:

  • the catalog exposes only name/description until activation
  • execution is tool-loop driven (activate_skill / read_skill_file / execute_skill_script)
  • pre_step / post_step lifecycle hooks are rendered into a dedicated <skill_hooks> block

Custom skills can be placed in <workspace>/custom/skills/ and hot-loaded at runtime.

Environment Modules

Environment modules encapsulate specific functionality through tools:

  • EnvBase: Base class for creating custom modules
  • @tool decorator: Register methods as discoverable tools
  • Tool kinds:
    • observe: Single-parameter observation functions
    • statistics: No-parameter aggregation functions
    • Regular tools: Full read/write operations

Routers

Routers mediate agent-environment interactions using different reasoning patterns:

  • ReActRouter: Reasoning + Acting loop
  • PlanExecuteRouter: Plan-first, then execute
  • CodeGenRouter: Code generation based tool use
  • TwoTierReActRouter: Two-level reasoning hierarchy
  • TwoTierPlanExecuteRouter: Two-level planning hierarchy

Storage

AgentSociety 2 currently has two persistence paths:

from agentsociety2.storage import ReplayReader, ReplayWriter
from pathlib import Path

writer = ReplayWriter(Path("run/replay"))
await writer.init()

# Replay schema sidecar: run/replay/_schema.json

# Environment modules can register and write their own replay tables.
from agentsociety2.storage import ColumnDef, TableSchema
schema = TableSchema(
    name="custom_metrics",
    columns=[
        ColumnDef("metric_id", "INTEGER", nullable=False),
        ColumnDef("value", "REAL"),
    ],
    primary_key=["metric_id"],
)
await writer.register_table(schema)

reader = ReplayReader(Path("run/replay"))
print(reader.load_dataset_catalog())
reader.close()
  • ReplayWriter / ReplayReader: write sharded JSONL replay datasets plus _schema.json metadata, then read them through DuckDB-backed views.
  • PersonAgent workspace: stores per-agent local files under run/agents/agent_xxxx/, such as config.json, AGENT.json, AGENT_MEMORY.md, state/*.json, and .runtime/logs/*.jsonl.
  • Trace: the agentsociety2.trace module writes distributed tracing spans (sharded writer + background-thread actor) for profiling steps and LLM calls.

Legacy SQLite tables like agent_profile, agent_status, and agent_dialog are kept only for compatibility when reading old experiment databases; new runs write run/replay/ instead.

Configuration

Set your LLM API credentials via environment variables. The examples below use the OpenAI API endpoint and gpt-5.5; other LiteLLM-supported providers can be used by changing the base URL and model id.

Required Configuration

# Default LLM (required - used for most operations)
export AGENTSOCIETY_LLM_API_KEY="your-api-key"
export AGENTSOCIETY_LLM_API_BASE="https://api.openai.com/v1"
export AGENTSOCIETY_LLM_MODEL="gpt-5.5"

Optional Configuration

For specialized tasks, you can configure separate LLM instances:

# Code Generation LLM (for code-related tasks)
# Falls back to default LLM if not set
export AGENTSOCIETY_CODER_LLM_API_KEY="your-coder-api-key"
export AGENTSOCIETY_CODER_LLM_API_BASE="https://api.openai.com/v1"
export AGENTSOCIETY_CODER_LLM_MODEL="gpt-5.5"

# Nano LLM (for high-frequency, low-latency operations)
# Falls back to default LLM if not set
export AGENTSOCIETY_NANO_LLM_API_KEY="your-nano-api-key"
export AGENTSOCIETY_NANO_LLM_API_BASE="https://api.openai.com/v1"
export AGENTSOCIETY_NANO_LLM_MODEL="gpt-5.5"

# Embedding Model (for text embeddings and semantic search)
# Falls back to default LLM if not set
export AGENTSOCIETY_EMBEDDING_API_KEY="your-embedding-api-key"
export AGENTSOCIETY_EMBEDDING_API_BASE="https://api.openai.com/v1"
export AGENTSOCIETY_EMBEDDING_MODEL="text-embedding-3-large"
export AGENTSOCIETY_EMBEDDING_DIMS="1024"

# Data directory (optional, default: ./agentsociety_data)
export AGENTSOCIETY_HOME_DIR="/path/to/your/data"

Or use a .env file:

# From the repository root:
cp .env.example .env
# Edit .env with your credentials before importing agentsociety2

Note AgentSociety 2 validates AGENTSOCIETY_LLM_API_KEY at import time. Make sure it is set before importing agentsociety2, or load .env early in your entrypoint.

Examples

The examples/ directory contains ready-to-run examples:

  • basics/: Basic agent and environment usage
  • games/: Classic game theory simulations
    • Prisoner's Dilemma
    • Public Goods Game
    • Trust Game
    • Volunteer's Dilemma
    • Commons Tragedy
  • advanced/: Advanced usage patterns
    • Custom environment modules
    • Multi-router setups
    • Experiment replay and analysis

Documentation

Development

For development guidelines, see docs/development.rst.

Contributing

We welcome contributions! Please see CONTRIBUTING.md for details.

Citation

If you use AgentSociety 2 in your research, please cite:

@software{agentsociety2,
  title = {AgentSociety 2: A Modern LLM-Native Agent Simulation Platform},
  author = {Zhang, Jun and others},
  year = {2025},
  url = {https://github.com/tsinghua-fib-lab/agentsociety}
}

License

Apache License 2.0 - see LICENSE for details.

Acknowledgments

AgentSociety 2 builds upon excellent open-source projects:

Contact


For the original AgentSociety (v1.x) focused on city simulation, see the agentsociety package.

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

agentsociety2-2.6.0.tar.gz (530.8 kB view details)

Uploaded Source

Built Distribution

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

agentsociety2-2.6.0-py3-none-any.whl (681.0 kB view details)

Uploaded Python 3

File details

Details for the file agentsociety2-2.6.0.tar.gz.

File metadata

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

File hashes

Hashes for agentsociety2-2.6.0.tar.gz
Algorithm Hash digest
SHA256 8f479c188a94652e848648a93c04642f9c25b561a5da24790792fed5584432db
MD5 85bf10ac9a5f3abe4e5e4b62c6b9091e
BLAKE2b-256 5b78c99dd9dc6f1f43adf03a3c04bbbea0c7056bfea981d19c53e5894bf635e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentsociety2-2.6.0.tar.gz:

Publisher: agentsociety2-publish.yml on tsinghua-fib-lab/AgentSociety

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

File details

Details for the file agentsociety2-2.6.0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for agentsociety2-2.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1feaa9718e70a6ce74dd2a83b97ce8b5a51ce4573260cfc1f462cc6a584d0f2a
MD5 89914911026345845c7f9b3e6e16fa61
BLAKE2b-256 52c22042953118c0b16ae9807778f8144b87fe38b1bfa73fe27465eca03632c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentsociety2-2.6.0-py3-none-any.whl:

Publisher: agentsociety2-publish.yml on tsinghua-fib-lab/AgentSociety

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