@oliverlessa/gemini-agent-lib
Version:
Uma biblioteca NodeJS para criar agentes de IA com Gemini LLM
47 lines (46 loc) • 1.08 kB
JSON
{
"name": "@oliverlessa/gemini-agent-lib",
"version": "1.1.0",
"description": "Uma biblioteca NodeJS para criar agentes de IA com Gemini LLM",
"main": "index.js",
"author": "Oliver Lessa",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oliverlessa/gemini-agent-lib.git"
},
"keywords": [
"ai",
"agents",
"llm",
"gemini",
"vertex-ai",
"nodejs",
"function-calling"
],
"dependencies": {
"@google-cloud/aiplatform": "^4.1.0",
"@google-cloud/discoveryengine": "^2.0.0",
"@google-cloud/vertexai": "^1.9.3",
"@google/generative-ai": "^0.23.0",
"chromadb": "^2.2.1",
"debug": "^4.4.0",
"dotenv": "^16.4.7",
"mongodb": "^6.15.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"gts": "^6.0.2"
},
"scripts": {
"test": "node test/test-chat-agent.js",
"test:all": "for file in test/*.js; do node \"$file\"; done"
},
"type": "commonjs",
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib",
"test": "test"
}
}