mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
* Adding latest models to AI plugins * Add new OpenAI models Added new OpenAI models (GPT-5.2, GPT-5.1, GPT-5, GPT-5 Mini) to operations.json with corresponding parameters. * update gemini models * Change 'prompt' to 'history' in operations.json * Update history field descriptions in operations.json * Fix user_prompt field in operations.json Updated user_prompt field with new properties and corrected duplicate mandatory entries. * Refactor user_prompt fields in operations.json Removed redundant 'description' and 'mandatory' fields from user_prompt in operations.json. * Add GPT Image 1 option to OpenAI operations * Update Claude model options in operations.json Added new Claude models and marked discontinued ones. * Fix formatting of claude-haiku entry in operations.json * Rename max_tokens to max_completion_tokens * Fix formatting in operations.json * Fix formatting in operations.json * Update OpenAI dependency version to 6.15.0 * Remove default max_completion_tokens from completions Removed default max_completion_tokens value from OpenAI API calls. * Fixing gpt models * Added the deprecated tag on claude haiku 3-5 model * Updating the model for test connection * Fix the embedding for open ai * Update deprecated model name in operations.json for gemini 2.0 flash exp --------- Co-authored-by: Shubham Gupta <22.shubhamgupta@gmail.com> Co-authored-by: Ganesh Kumar <ganesh8056234@gmail.com>
27 lines
637 B
JSON
27 lines
637 B
JSON
{
|
|
"name": "@tooljet-marketplace/openai",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "ncc build lib/index.ts -o dist",
|
|
"watch": "ncc build lib/index.ts -o dist --watch"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@tooljet-marketplace/common": "^1.0.0",
|
|
"openai": "^6.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.34.0",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|