chatgpt-api/examples/package.json

43 wiersze
1.1 KiB
JSON

2024-06-02 02:04:13 +00:00
{
"name": "agentic-examples",
"private": true,
"version": "0.1.0",
2024-06-07 07:32:19 +00:00
"description": "Examples of how to use the Agentic AI SDK.",
2024-06-02 02:04:13 +00:00
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"repository": {
"type": "git",
2024-06-07 07:32:19 +00:00
"url": "git+https://github.com/transitive-bullshit/agentic.git"
2024-06-02 02:04:13 +00:00
},
2024-06-07 07:32:19 +00:00
"packageManager": "pnpm@9.2.0",
2024-06-02 02:04:13 +00:00
"engines": {
"node": ">=18"
},
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "tsc",
"clean": "del dist",
"prebuild": "run-s clean",
"pretest": "run-s build",
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit"
},
"dependencies": {
2024-06-07 05:42:55 +00:00
"@agentic/stdlib": "workspace:*",
"@ai-sdk/openai": "^0.0.24",
"@dexaai/dexter": "^2.1.0",
2024-06-02 07:30:50 +00:00
"@genkit-ai/ai": "^0.5.2",
"@genkit-ai/core": "^0.5.2",
2024-06-07 05:42:55 +00:00
"@langchain/core": "^0.2.6",
"@langchain/openai": "^0.1.2",
"ai": "^3.1.30",
2024-06-02 02:04:13 +00:00
"dotenv": "^16.4.5",
2024-06-07 05:42:55 +00:00
"genkitx-openai": "^0.10.0",
"langchain": "^0.2.5",
"llamaindex": "^0.3.16",
"openai": "^4.49.0",
"zod": "^3.23.8"
2024-06-02 02:04:13 +00:00
}
}