A modular Agentic AI framework powered by DeepSeek, written in Node.js
npm install agentic-frameworkA modular Agentic AI framework built with Node.js, powered by DeepSeek. Create autonomous agents that can reason, collaborate, and execute tasks using language models.
- Modular agent structure (roles, tools, memory)
- DeepSeek LLM integration (chat & reasoning)
- Task orchestration with multi-agent crews
- Memory handling for agent recall
``bash`
npm i agentic-framework
`js
const ReasoningAgent = require('agentic-framework/agents/reasoningAgent');
const DeepSeekLLM = require('agentic-framework/tools/deepSeekLLM');
const CrewManager = require('agentic-framework/crew/crewManager');
const strategist = new ReasoningAgent("Eli", "Strategist", [DeepSeekLLM]);
const crew = new CrewManager([strategist]);
crew.runMission("Create a 3-step market entry strategy for an AI product in the EU.");
`
> ā
Make sure to set your DeepSeek API key in a .env file:
``
DEEPSEEK_API_KEY=your-api-key-here
```
agentic-framework-node/
āāā agents/
āāā tools/
āāā crew/
āāā .env
āāā index.js
āāā package.json
MIT