From 9c0ed3c799b1ca089ae9cfe081553b4325e6a310 Mon Sep 17 00:00:00 2001 From: Eyal Toledano Date: Fri, 11 Apr 2025 13:33:02 -0400 Subject: [PATCH] chore(ai): Reduces context window back from 128k to 64k until we decouple context windows between main and research models. --- .changeset/two-bats-smoke.md | 1 - .env.example | 2 +- README.md | 2 +- docs/tutorial.md | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.changeset/two-bats-smoke.md b/.changeset/two-bats-smoke.md index 61930d0e..35d13950 100644 --- a/.changeset/two-bats-smoke.md +++ b/.changeset/two-bats-smoke.md @@ -37,7 +37,6 @@ - Add additional binary alias: `task-master-mcp-server` pointing to the same MCP server script - **Significant improvements to model configuration:** - - Increase context window from 64k to 128k tokens (MAX_TOKENS=128000) for handling larger codebases - Reduce temperature from 0.4 to 0.2 for more consistent, deterministic outputs - Set default model to "claude-3-7-sonnet-20250219" in configuration - Update Perplexity model to "sonar-pro" for research operations diff --git a/.env.example b/.env.example index 2a44c040..45284a3c 100644 --- a/.env.example +++ b/.env.example @@ -5,7 +5,7 @@ PERPLEXITY_API_KEY=your_perplexity_api_key_here # Format: pplx-... # Model Configuration MODEL=claude-3-7-sonnet-20250219 # Recommended models: claude-3-7-sonnet-20250219, claude-3-opus-20240229 PERPLEXITY_MODEL=sonar-pro # Perplexity model for research-backed subtasks -MAX_TOKENS=128000 # Maximum tokens for model responses +MAX_TOKENS=64000 # Maximum tokens for model responses TEMPERATURE=0.2 # Temperature for model responses (0.0-1.0) # Logging Configuration diff --git a/README.md b/README.md index 6610109c..a9b71e0c 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ MCP (Model Control Protocol) provides the easiest way to get started with Task M "PERPLEXITY_API_KEY": "YOUR_PERPLEXITY_API_KEY_HERE", "MODEL": "claude-3-7-sonnet-20250219", "PERPLEXITY_MODEL": "sonar-pro", - "MAX_TOKENS": 128000, + "MAX_TOKENS": 64000, "TEMPERATURE": 0.2, "DEFAULT_SUBTASKS": 5, "DEFAULT_PRIORITY": "medium" diff --git a/docs/tutorial.md b/docs/tutorial.md index 1dec41ba..64e3ed60 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -23,7 +23,7 @@ MCP (Model Control Protocol) provides the easiest way to get started with Task M "PERPLEXITY_API_KEY": "YOUR_PERPLEXITY_API_KEY_HERE", "MODEL": "claude-3-7-sonnet-20250219", "PERPLEXITY_MODEL": "sonar-pro", - "MAX_TOKENS": 128000, + "MAX_TOKENS": 64000, "TEMPERATURE": 0.2, "DEFAULT_SUBTASKS": 5, "DEFAULT_PRIORITY": "medium"