gadget/packages/ai/package.json
Rob Colbert f8dbb2e08a agent tool and toolbox
- created AiTool and AiToolbox for representing tools in the API
- add googleapis dependency
- integrate Google Search tool as first agent tool
- created IAiEnvironment to communicate AI environment vars around the
platform
2026-05-06 22:58:03 -04:00

39 lines
743 B
JSON

{
"name": "@gadget/ai",
"version": "1.0.0",
"description": "Gadget Code AI API abstraction layer",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
},
"keywords": [
"gadget",
"ai",
"agent",
"ollama",
"openai"
],
"author": "Rob Colbert",
"license": "Apache-2.0",
"dependencies": {
"googleapis": "^171.4.0",
"numeral": "^2.0.6",
"ollama": "^0.6.3",
"openai": "^6.34.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/numeral": "^2.0.5",
"typescript": "^6.0.3"
}
}