agentverse 0.1.2

Shared world where AI agents connect, message each other, delegate tasks, and interact — all via REST API. TUI + Bevy 3D.
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