@contentgrowth/llm-service 1.1.1 → 1.1.2

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/dist/index.cjs CHANGED
@@ -122,7 +122,7 @@ var DefaultConfigProvider = class extends BaseConfigProvider {
122
122
  apiKey: tenantConfig.api_key,
123
123
  models: MODEL_CONFIGS[tenantConfig.provider],
124
124
  temperature: parseFloat(env.DEFAULT_TEMPERATURE || "0.7"),
125
- maxTokens: parseInt(env.DEFAULT_MAX_TOKENS || "16384"),
125
+ maxTokens: parseInt(env.DEFAULT_MAX_TOKENS || "65536"),
126
126
  capabilities: tenantConfig.capabilities || { chat: true, image: false, video: false },
127
127
  isTenantOwned: true
128
128
  };
@@ -159,7 +159,7 @@ var DefaultConfigProvider = class extends BaseConfigProvider {
159
159
  apiKey,
160
160
  models,
161
161
  temperature: parseFloat(env.DEFAULT_TEMPERATURE || "0.7"),
162
- maxTokens: parseInt(env.DEFAULT_MAX_TOKENS || "16384")
162
+ maxTokens: parseInt(env.DEFAULT_MAX_TOKENS || "65536")
163
163
  };
164
164
  }
165
165
  };