Files
MetaCrate/config/grid-agent.example.json
Chili Palmer 26fd2bf714
Some checks failed
CI / rust-skia (Rust only) (push) Successful in 2m44s
CI / required (push) Failing after 2m41s
feat(grid-agent): add chat and IM interactions (#123)
2026-08-17 23:11:04 +00:00

63 lines
1.6 KiB
JSON

{
"integrated": false,
"split": false,
"llm": {
"endpoint_url": "https://llm.example.invalid/v1/chat/completions",
"api_key": "<set-via-environment-or-restricted-secret-file>"
},
"authorized_avatar_uuids": [],
"timeouts": {
"startup_seconds": 30,
"shutdown_seconds": 10,
"request_seconds": 60
},
"limits": {
"grid_event_queue": 256,
"control_queue": 32,
"observable_queue": 512,
"max_body_bytes": 1048576,
"max_message_bytes": 16384,
"max_conversation_messages": 64,
"max_tool_calls": 16,
"max_authorized_avatars": 128,
"max_background_tasks": 2
},
"storage_path": "data/grid-agent",
"behavior": {
"heartbeat_seconds": 30
},
"reconnect": {
"initial_delay_milliseconds": 1000,
"maximum_delay_seconds": 60,
"stable_reset_seconds": 120,
"jitter_basis_points": 2000,
"offline_work_capacity": 128
},
"conversation": {
"persistence_enabled": false,
"max_active_sessions": 512,
"max_turns_per_session": 64,
"max_session_bytes": 262144,
"max_total_bytes": 8388608,
"max_tool_results_per_session": 16,
"max_tool_result_bytes": 16384,
"max_persisted_bytes": 16777216,
"max_summary_bytes": 8192
},
"interaction": {
"aliases": ["metacrate"],
"debounce_milliseconds": 250,
"model_timeout_seconds": 30,
"public_rate_milliseconds": 750,
"im_rate_milliseconds": 250,
"public_followup_seconds": 120,
"max_response_bytes": 2048,
"grid_chunk_bytes": 1023,
"max_active_senders": 512,
"max_queued_per_sender": 16,
"max_concurrent_inference": 4,
"max_duplicate_ids": 4096,
"max_debounce_fragments": 8
}
}