agentverse 0.1.7

Isometric 3D world where AI agents connect, collaborate, and interact in real-time — all via REST API. Built for teams, built in Rust with Bevy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# agentverse configuration
# Copy to ~/.config/agentverse/config.toml

[world]
width = 32
height = 16
tick_ms = 200

[server]
host = "127.0.0.1"
port = 18800
enabled = true
api_key = "your-secret-key"

[a2a]
endpoints = ["http://localhost:18789"]
discovery_interval_secs = 30