forked from SynkraAI/aiox-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (39 loc) · 1.75 KB
/
.env.example
File metadata and controls
53 lines (39 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# AIOS Framework Environment Variables
# Copy this file to .env and fill in your values
# NEVER commit .env files to version control
# =============================================================================
# AI Provider Configuration
# =============================================================================
# Anthropic API (Claude)
# Get your key from: https://console.anthropic.com/
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# OpenAI API (optional, for GPT models)
# Get your key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# =============================================================================
# GitHub Integration
# =============================================================================
# GitHub Personal Access Token (for API operations)
# Create at: https://github.com/settings/tokens
GITHUB_TOKEN=your_github_token_here
# =============================================================================
# AIOS Framework Settings
# =============================================================================
# Enable debug mode for verbose logging
AIOS_DEBUG=false
# Default AI model to use
AIOS_DEFAULT_MODEL=claude-3-5-sonnet-20241022
# MCP Server settings
AIOS_MCP_ENABLED=true
# =============================================================================
# Development Settings (Optional)
# =============================================================================
# Node environment
NODE_ENV=development
# Log level (debug, info, warn, error)
LOG_LEVEL=info
# =============================================================================
# Testing (CI/CD)
# =============================================================================
# CI environment flag (set by GitHub Actions)
# CI=true