swift-agent
Version:
A building block of agentic systems: an LLM that can retrieve information, use tools, and store user inputs.
35 lines (34 loc) • 869 B
JSON
{
"name": "swift-agent",
"version": "0.2.3",
"description": "A building block of agentic systems: an LLM that can retrieve information, use tools, and store user inputs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"example": "ts-node examples/run-swift-agent.ts",
"lint": "eslint"
},
"keywords": [
"ai",
"llm",
"mcp",
"agent"
],
"author": "Evan Tseng-Jen Tseng <evan@tseng.io>",
"license": "MIT",
"dependencies": {
"@langchain/google-genai": "^0.2.18",
"@langchain/langgraph": "^0.2.71",
"@langchain/mcp-adapters": "^0.4.5",
"dotenv": "^16.5.0",
"langchain": "^0.3.24"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.1",
"@types/node": "^24.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
}
}