swift-agent
Version:
A building block of agentic systems: an LLM that can retrieve information, use tools, and store user inputs.
44 lines (43 loc) • 1.2 kB
JSON
{
"name": "swift-agent",
"version": "0.0.15",
"description": "A building block of agentic systems: an LLM that can retrieve information, use tools, and store user inputs.",
"main": "dist/swift-agent.ts",
"scripts": {
"test": "vitest __test__",
"example": "ts-node ./examples/run-swift-agent.ts",
"lint": "eslint --config eslint.config.mjs ."
},
"keywords": [
"AI",
"LLM",
"MCP",
"ai-agent"
],
"author": {
"name": "Evan Tseng-Jen Tseng",
"email": "evan@tseng.io"
},
"license": "MIT",
"dependencies": {
"@langchain/google-genai": "^0.2.5",
"@langchain/langgraph": "^0.2.71",
"@langchain/mcp-adapters": "^0.4.5",
"dotenv": "^16.5.0",
"langchain": "^0.3.24"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vitest": "^3.1.3"
}
}