From 1254fbcdaef955f22ca47bb981b3101fd51e34a7 Mon Sep 17 00:00:00 2001 From: Eyal Toledano Date: Wed, 2 Apr 2025 22:41:34 -0400 Subject: [PATCH] fix: Adjusts default temp from 0.7 down to 0.2 --- assets/env.example | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/assets/env.example b/assets/env.example index 7dc2f972..0dfb45e4 100644 --- a/assets/env.example +++ b/assets/env.example @@ -1,14 +1,14 @@ # Required -ANTHROPIC_API_KEY=your-api-key-here # Format: sk-ant-api03-... -PERPLEXITY_API_KEY=pplx-abcde # For research (recommended but optional) +ANTHROPIC_API_KEY=your-api-key-here # For most AI ops -- Format: sk-ant-api03-... (Required) +PERPLEXITY_API_KEY=pplx-abcde # For research -- Format: pplx-abcde (Optional, Highly Recommended) # Optional - defaults shown -MODEL=claude-3-7-sonnet-20250219 # Recommended models: claude-3-7-sonnet-20250219, claude-3-opus-20240229 -PERPLEXITY_MODEL=sonar-pro # Make sure you have access to sonar-pro otherwise you can use sonar regular. -MAX_TOKENS=4000 # Maximum tokens for model responses -TEMPERATURE=0.7 # Temperature for model responses (0.0-1.0) +MODEL=claude-3-7-sonnet-20250219 # Recommended models: claude-3-7-sonnet-20250219, claude-3-opus-20240229 (Required) +PERPLEXITY_MODEL=sonar-pro # Make sure you have access to sonar-pro otherwise you can use sonar regular (Optional) +MAX_TOKENS=64000 # Maximum tokens for model responses (Required) +TEMPERATURE=0.2 # Temperature for model responses (0.0-1.0) - lower = less creativity and follow your prompt closely (Required) DEBUG=false # Enable debug logging (true/false) LOG_LEVEL=info # Log level (debug, info, warn, error) -DEFAULT_SUBTASKS=3 # Default number of subtasks when expanding +DEFAULT_SUBTASKS=5 # Default number of subtasks when expanding DEFAULT_PRIORITY=medium # Default priority for generated tasks (high, medium, low) PROJECT_NAME={{projectName}} # Project name for tasks.json metadata \ No newline at end of file