Configuring Agents
Define and customize agents using JSON: set up personality traits, emotional parameters, memory files, LLM preferences, and voice profiles — all without writing Rust.
📄 Agent Config Overview
{
"agents": [
{
"id": "velma",
"personality": {
"curiosity": 0.7,
"trust": 0.4,
"anger": 0.1
},
"goals": [
{
"id": "explore_ruins",
"priority": 0.8
}
],
"memories": [
{
"content": "Player helped me escape the cave.",
"tags": ["trust"],
"importance": 0.9
}
],
"llm_profile": {
"preferred_provider": "groq"
}
}
]
}