-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
32 lines (25 loc) · 1.32 KB
/
env.example
File metadata and controls
32 lines (25 loc) · 1.32 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
# OSS Dev Agent - Environment Variables
# Copy this file to .env or set these variables in your shell
# ============================================
# PRIMARY: Gemini API Configuration
# ============================================
# OSS Dev Agent is built for Gemini 3 hackathon and uses Gemini as the primary LLM
# Get your API key from: https://aistudio.google.com/apikey
# Gemini API Key (required)
# This is the primary and intended API key for OSS Dev Agent
GEMINI_API_KEY=your_gemini_api_key_here
# Alternative: You can also use API_KEY (will be used if GEMINI_API_KEY is not set)
# API_KEY=your_gemini_api_key_here
# ============================================
# GitHub Configuration (for OSS features)
# ============================================
# Required for OSS Dev Agent to fetch issues and create PRs
# Get your token from: https://github.com/settings/tokens
GITHUB_TOKEN=your_github_token_here
# ============================================
# Optional: Fallback Configuration
# ============================================
# These are optional and only used if provider is set to 'openai' in config
# OSS Dev Agent defaults to Gemini - these are for development/fallback only
# OPENAI_API_KEY=your_openai_key_here # Only if using OpenAI as fallback
# BASE_URL=https://api.openai.com/v1 # Only if using custom OpenAI endpoint