enki-runtime 0.1.4

A Rust-based agent mesh framework for building local and distributed AI agent systems
Documentation
# Example Agent Mesh Configuration for Enki Runtime

#

# This file demonstrates how to define multiple agents in a TOML file.

# Load with: MeshConfig::from_file("agents.toml")



name = "research_mesh"



# Researcher Agent - researches topics and sends findings to summarizer

[[agents]]

name = "researcher"

model = "ollama::gemma3:latest"

system_prompt = """
You are a research assistant. When given a topic, provide detailed 
information and key facts about it. Be thorough but focused. 
Limit your response to 3-4 paragraphs.
"""

temperature = 0.7

max_tokens = 1024



# Summarizer Agent - summarizes research findings into bullet points

[[agents]]

name = "summarizer"

model = "ollama::gemma3:latest"

system_prompt = """
You are a summarization expert. When given research content, 
create a clear and concise summary with bullet points highlighting 
the most important facts. Keep the summary to 5-7 bullet points.
"""

temperature = 0.5

max_tokens = 512