agentkits — DeepSeek Agents | Neura Market
    Neura MarketNeura Market/DeepSeek
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityDeepSeekDeepSeek
    CoPilotCoPilotStable DiffusionStable DiffusionMidjourneyMidjourney
    View All Directories
    OverviewRulesPromptsMCPsAgentsBlogVideosGuidesCoursesCommunityTrendingGenerate
    DeepSeekAgentsagentkits
    Back to Agents
    agentkits

    agentkits

    Deepleaper April 12, 2026
    1 copies 0 downloads

    🧰 Multi-provider AI toolkit — 18 modules: Embedding, LLM, RAG, Agent, Vision, TTS, STT, Image Gen, Tool Calling, Structured Output, Smart Router, Failover, and more. One interface, any model.

    Agent Definition
    <div align="center">
    
    # 🧰 AgentKits
    
    **多模型 AI 智能体工具库 · Multi-provider AI toolkit for agents**
    
    [![npm version](https://img.shields.io/npm/v/agentkits.svg?style=flat-square)](https://www.npmjs.com/package/agentkits)
    [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg?style=flat-square)](LICENSE)
    [![TypeScript](https://img.shields.io/badge/TypeScript-5.7+-blue.svg?style=flat-square)](https://www.typescriptlang.org/)
    [![Tests](https://img.shields.io/badge/tests-285%20passing-brightgreen.svg?style=flat-square)](#)
    [![Node.js](https://img.shields.io/badge/node-%3E%3D18-green.svg?style=flat-square)](https://nodejs.org/)
    
    *20 个大模型 · 15 个向量化引擎 · 38 个功能模块 · 零锁定*
    
    [🇨🇳 完整中文文档](README.zh-CN.md) · [Quick Start](#quick-start) · [Providers](#大模型供应商-llm-providers) · [Modules](#模块目录-module-catalog)
    
    </div>
    
    ---
    
    ## 为什么选择 AgentKits?
    
    构建 AI 智能体不应被锁定在单一供应商。AgentKits 提供**统一接口**,覆盖 20+ 大模型和 15+ 向量化引擎。切换模型只需改一个配置,无需重写代码。
    
    > **🇨🇳 深度支持中国大模型生态**:通义千问、智谱AI、月之暗面、零一万物、硅基流动、阶跃星辰、百川智能、DeepSeek深度求索、MiniMax — 一等公民,不是附加品。
    
    ```ts
    import { createChat, createEmbedding } from 'agentkits';
    
    // 切换供应商只需改一个词
    const chat = createChat({ provider: 'deepseek' });  // 深度求索
    const reply = await chat.complete('解释量子计算');
    
    const emb = createEmbedding({ provider: 'dashscope' });  // 通义千问
    const vector = await emb.embed('你好世界');
    ```
    
    ## 快速开始 Quick Start
    
    ```bash
    npm install agentkits
    ```
    
    ### 对话补全 Chat
    
    ```ts
    import { createChat } from 'agentkits';
    
    // 使用任意供应商
    const chat = createChat({ provider: 'deepseek', model: 'deepseek-chat' });
    const reply = await chat.complete('你好!');
    
    // 流式输出
    for await (const chunk of chat.stream('给我讲个故事')) {
      process.stdout.write(chunk.content ?? '');
    }
    ```
    
    ### 向量化 Embedding
    
    ```ts
    import { createEmbedding } from 'agentkits';
    
    const emb = createEmbedding({ provider: 'dashscope' });  // 通义千问向量化
    const vector = await emb.embed('语义搜索');
    const batch = await emb.embedBatch(['文档1', '文档2', '文档3']);
    ```
    
    ### 函数调用 Tool Calling
    
    ```ts
    import { createToolChat, defineTool } from 'age

    Tags

    agentaideepseekembeddinggeminillmmulti-providerollamaopenairag

    Comments

    More Agents

    View all
    hybrid-model-workflow

    hybrid-model-workflow

    HAL 分层混合模型工作流 — 强模型(Claude)负责理解/拆解/验收,低成本模型(DeepSeek)负责检索/提取/清洗。Hermes Agent skill。

    P
    ph4ble
    1
    Dynamic-Review-Agent

    Dynamic-Review-Agent

    An LLM agent fine-tuned on DeepSeek for spaced repetition, dynamically integrating knowledge points based on the Ebbinghaus forgetting curve.

    1
    1838177
    1
    StellarOS-Watch

    StellarOS-Watch

    基于 STM32F103 构建的端到端 AI 智能手表生态。自研“零重定位”原生机器码动态加载引擎与页面栈式 UI 框架;集成生产级 OTA 回滚保护机制与高带宽(921600 baud)串口协议栈。通过 Node.js 中继实现 DeepSeek AI 语义控制及 ASRPRO 语音全双工交互,是一个集成了分布式计算、现代存储管理与 AI Agent 的嵌入式全栈工程。

    C
    chenshuang888
    1
    UAVagent1.0deepseek

    UAVagent1.0

    A Meta-Agent-Driven Self-Evolving Multi-Agent System for UAV Detection and Tracking

    S
    StarlitPupils
    2
    hermes-goai-agent

    hermes-go

    One command to run Hermes AI Agent with a browser UI. Zero prerequisites. 一行命令,AI 就位。

    L
    LAI-755
    1
    Agent

    Agent

    网页应用Agent,接入DeepSeek、Mimo等模型

    C
    Cosmos-815
    1

    Stay up to date

    Get the latest DeepSeek prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for DeepSeek and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.