Configuration Examples
This guide provides complete, working configuration examples for different AgentMap deployment scenarios. Each example includes both the main configuration file and environment variable setup.
๐โโ๏ธ Quick Start: Minimal Configurationโ
Perfect for getting started with AgentMap in under 5 minutes.
Minimal Configuration Filesโ
agentmap_config.yaml:
# Minimal configuration for quick start
csv_path: "examples/HelloWorld.csv"
autocompile: true
llm:
openai:
api_key: "env:OPENAI_API_KEY"
model: "gpt-4o-mini"
temperature: 0.7
.env:
# Basic environment variables
OPENAI_API_KEY=sk-your-openai-key-here
Quick Start Usage:
# 1. Save the configuration files
# 2. Set your OpenAI API key in .env
# 3. Run your first workflow
agentmap run --graph HelloWorld --state '{"input": "Hello, AgentMap!"}'