- AgentConfigStore: Per-agent YAML configs in ~/.xml-pipeline/agents/ - Full-screen editor using prompt_toolkit with YAML highlighting - /configure: Edit organism.yaml (swarm wiring) - /configure @agent: Edit agent config (prompt, model, temperature) Agent configs separate behavior (prompt, model) from wiring (peers, routing). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
23 lines
391 B
Python
23 lines
391 B
Python
"""
|
|
Configuration management for xml-pipeline.
|
|
|
|
Handles:
|
|
- Agent configs (~/.xml-pipeline/agents/*.yaml)
|
|
- Organism config (organism.yaml)
|
|
"""
|
|
|
|
from .agents import (
|
|
AgentConfig,
|
|
AgentConfigStore,
|
|
get_agent_config_store,
|
|
CONFIG_DIR,
|
|
AGENTS_DIR,
|
|
)
|
|
|
|
__all__ = [
|
|
"AgentConfig",
|
|
"AgentConfigStore",
|
|
"get_agent_config_store",
|
|
"CONFIG_DIR",
|
|
"AGENTS_DIR",
|
|
]
|