changed default max tokens from 2048 to 8192

This commit is contained in:
munimunigamer
2025-12-29 02:42:51 -12:00
parent 5369cb14a5
commit 018ab3613f
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ export let extensionSettings = {
baseUrl: '', // OpenAI-compatible API base URL (e.g., "https://api.openai.com/v1")
apiKey: '', // API key for the external service
model: '', // Model identifier (e.g., "gpt-4o-mini")
maxTokens: 2048, // Maximum tokens for generation
maxTokens: 8192, // Maximum tokens for generation
temperature: 0.7 // Temperature setting for generation
}
};