Skip to content

Commit 11f1ef0

Browse files
committed
2 parents 2b5f4ef + efe7223 commit 11f1ef0

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,23 @@
22

33
![banner](static/agent-evac-logo.png)
44

5+
[![CI](https://github.com/denoslab/AgentEvac/actions/workflows/ci.yml/badge.svg)](https://github.com/denoslab/AgentEvac/actions/workflows/ci.yml)
6+
[![Docker](https://github.com/denoslab/AgentEvac/actions/workflows/docker.yml/badge.svg)](https://github.com/denoslab/AgentEvac/actions/workflows/docker.yml)
7+
[![PyPI](https://img.shields.io/pypi/v/agentevac)](https://pypi.org/project/agentevac/)
8+
[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
9+
[![Docs](https://img.shields.io/badge/docs-GitHub%20Pages-blue)](https://denoslab.github.io/AgentEvac/)
10+
[![License](https://img.shields.io/github/license/denoslab/AgentEvac)](LICENSE)
11+
12+
📖 **[Full API documentation](https://denoslab.github.io/AgentEvac/)**
13+
514
An agentic simulator for wildfire evacuations that couples SUMO traffic simulation with LLM-driven agents. Agents follow the Protective Action Decision Model (PADM), maintaining probabilistic beliefs about hazard states and making real-time departure, routing, and destination decisions under uncertainty.
615

16+
## TL;DR
17+
18+
```bash
19+
pip install agentevac
20+
```
21+
722
## Background
823

924
Wildfire evacuations in the wildland-urban interface (WUI) are high-risk and time-critical. Existing simulations rely on behaviorally naive models that fail to capture dynamic human cognition — fear, trust in authorities, social influence, and evolving risk perception. This project uses LLM agents to encode psychologically grounded, communicative, and adaptive evacuation behavior, enabling rigorous testing of warning strategies and route policies before crises occur.
@@ -17,10 +32,15 @@ Wildfire evacuations in the wildland-urban interface (WUI) are high-risk and tim
1732

1833
## Quickstart
1934

20-
**Requirements:** Python 3.9+, [SUMO](https://sumo.dlr.de/docs/Installing/index.html), OpenAI API key.
35+
**Requirements:** Python 3.11+, [SUMO](https://sumo.dlr.de/docs/Installing/index.html), OpenAI API key.
2136

2237
```bash
23-
# Install the package and its dependencies
38+
# Install from PyPI
39+
pip install agentevac
40+
41+
# Or install in development mode from source
42+
git clone https://github.com/denoslab/AgentEvac.git
43+
cd AgentEvac
2444
pip install -e .
2545

2646
# Set required environment variables

0 commit comments

Comments
 (0)