converge-application 0.1.1

Converge distribution - packages domain packs, providers, and runtime into a deployable product
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Converge Application Environment Variables
#
# Copy this file to .env and fill in your API keys.
# The application will automatically detect and use available providers.

# Anthropic Claude API (preferred - excellent for strategic analysis)
# Get your key at: https://console.anthropic.com/
ANTHROPIC_API_KEY=your-anthropic-api-key-here

# OpenAI GPT API (fallback)
# Get your key at: https://platform.openai.com/api-keys
OPENAI_API_KEY=your-openai-api-key-here

# Provider Priority:
# 1. Anthropic (if ANTHROPIC_API_KEY is set)
# 2. OpenAI (if OPENAI_API_KEY is set)
# 3. Mock provider (if no keys are set - for testing)