Orchestrator Index
Proof of Concept · BETA

Orchestrator Index

aka Orchid

A SOLID, YAML-driven multi-agent framework built on LangGraph.

Scroll

The Ecosystem

Five separable packages with a one-direction dependency graph.

orchidorchid-apiorchid-cliorchid-frontendorchid-mcp

Built on four pillars

Every design decision stems from these four principles.

One config. Three runtimes.

The same agents.yaml works with the API, CLI, and MCP gateway.

version: "1" defaults: llm: model: "ollama/llama3.2" temperature: 0.2 agents: basketball: description: > NBA basketball expert with player stats, team rosters, and head-to-head comparisons. tools: - get_player_stats - compare_players - get_team_roster psychologist: description: > Sports psychologist for player motivation, mental toughness, and team dynamics. tools: - assess_motivation - suggest_mental_strategy
curl -X POST http://localhost:8000/chats/my-chat/messages \ -H "Content-Type: application/json" \ -d '{"content": "Tell me about LeBron James"}'

Run it locally

One command starts the demo with Ollama-powered models.

docker compose -f docker-compose.demo.yml up --build

Full quickstart →