Merge pull request #4112 from janhq/enhancement/max-token-limit-claude

enhancement: increased max-token limit claude-3.5
This commit is contained in:
Louis 2024-11-26 11:00:51 +07:00 committed by GitHub
commit ea1600d6c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "@janhq/inference-anthropic-extension", "name": "@janhq/inference-anthropic-extension",
"productName": "Anthropic Inference Engine", "productName": "Anthropic Inference Engine",
"version": "1.0.2", "version": "1.0.3",
"description": "This extension enables Anthropic chat completion API calls", "description": "This extension enables Anthropic chat completion API calls",
"main": "dist/index.js", "main": "dist/index.js",
"module": "dist/module.js", "module": "dist/module.js",

View File

@ -85,7 +85,7 @@
"format": "api", "format": "api",
"settings": {}, "settings": {},
"parameters": { "parameters": {
"max_tokens": 4096, "max_tokens": 8192,
"temperature": 0.7, "temperature": 0.7,
"stream": true "stream": true
}, },