@contentgrowth/llm-service 0.7.4 → 0.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentgrowth/llm-service",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "description": "Unified LLM Service for Content Growth",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -132,7 +132,7 @@ export class DefaultConfigProvider extends BaseConfigProvider {
132
132
  apiKey,
133
133
  models,
134
134
  temperature: parseFloat(env.DEFAULT_TEMPERATURE || '0.7'),
135
- maxTokens: parseInt(env.DEFAULT_MAX_TOKENS || '4096'),
135
+ maxTokens: parseInt(env.DEFAULT_MAX_TOKENS || '16384'),
136
136
  };
137
137
  }
138
138
  }