-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
50 lines (41 loc) · 1.71 KB
/
.env.example
File metadata and controls
50 lines (41 loc) · 1.71 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
# =============================================================================
# Java Test Generation Suite Configuration
# =============================================================================
# Core Configuration (Required)
SPRING_BOOT_PROJECT_PATH="/absolute/path/to/your/springboot/project"
ENABLE_INCREMENTAL_MERGE=true
# =============================================================================
# LLM Configuration
# =============================================================================
# Default: Google Gemini (recommended)
LLM_PROVIDER=google
LLM_MODEL_NAME=gemini-2.5-flash
LLM_TEMPERATURE=0.1
# LLM_MAX_TOKENS=8192 # Optional: Remove or comment out to let LLM generate unlimited tokens
GOOGLE_API_KEY=your_google_api_key_here
# Alternative Providers (uncomment to use):
# OpenAI GPT Models
# LLM_PROVIDER=openai
# LLM_MODEL_NAME=gpt-4
# OPENAI_API_KEY=your_openai_api_key_here
# Anthropic Claude
# LLM_PROVIDER=anthropic
# LLM_MODEL_NAME=claude-3-sonnet-20240229
# ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Ollama (Local Models)
# LLM_PROVIDER=ollama
# LLM_MODEL_NAME=codellama
# OLLAMA_BASE_URL=http://localhost:11434
# Azure OpenAI
# LLM_PROVIDER=azure
# LLM_MODEL_NAME=gpt-4
# AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
# AZURE_OPENAI_API_KEY=your_azure_api_key_here
# AZURE_OPENAI_DEPLOYMENT_NAME=your_deployment_name
# =============================================================================
# Model Recommendations
# =============================================================================
# Fast & Good: gemini-2.5-flash (default)
# Most Accurate: gpt-4, claude-3-sonnet-20240229
# Cost Effective: claude-3-haiku-20240307
# Local/Private: codellama (via Ollama)