name = "memory_demo_mesh"
[memory]
backend = "inmemory"
max_entries = 500
ttl_seconds = 3600
[[agents]]
name = "researcher"
model = "ollama::gemma3:latest"
system_prompt = """You are a research assistant with access to your memory.
When answering questions, use any relevant context from your knowledge base.
Be concise and cite your sources when available."""
temperature = 0.3
max_tokens = 1024
[[agents]]
name = "analyst"
model = "ollama::gemma3:latest"
system_prompt = """You are a data analyst with a specialized knowledge base.
Analyze information and provide insights based on your stored knowledge.
Be precise and data-driven in your responses."""
temperature = 0.2
max_tokens = 2048
[agents.memory]
backend = "inmemory"
max_entries = 1000
ttl_seconds = 7200
[[agents]]
name = "writer"
model = "ollama::gemma3:latest"
system_prompt = """You are a creative writer with your own inspiration library.
Draw from your stored ideas and references when crafting responses.
Be creative and expressive."""
temperature = 0.8
max_tokens = 2048
[agents.memory]
backend = "inmemory"
max_entries = 200
ttl_seconds = 1800