1. Conduid
  2. AI
  3. Langchain4j Aideepin Web
MCP server · AI

Langchain4j Aideepin Web

基于AI的工作效率提升工具(聊天、绘画、知识库、工作流、 MCP服务市场、语音输入输出、长期记忆) | Ai-based productivity tools (Chat,Draw,RAG,Workflow,MCP marketplace, ASR,TTS, Long-term memory etc)

Unclaimed MIT last commit 7 months ago ai
71Good

Scored 3 hours ago · breakdown

About Langchain4j Aideepin Web

Langchain4j Aideepin Web is an MCP server published by moyangzhan in the AI category: 基于AI的工作效率提升工具(聊天、绘画、知识库、工作流、 MCP服务市场、语音输入输出、长期记忆) | Ai-based productivity tools (Chat,Draw,RAG,Workflow,MCP marketplace, ASR,TTS, Long-term memory etc). It has been installed 0 times through Conduid.

The repository has 139 stars and 75 forks, with the last commit 7 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx langchain4j-aideepin-web

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Langchain4j Aideepin Web

Powered by Claude · Grounded in docs

I know everything about Langchain4j Aideepin Web. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v3.24.03.24.0 · 12 May 2026新功能** 增加英文版本 Full Changelog**: https://github.com/moyangzhan/langchain4j-aideepin-web/compare/v3.22.0...v3.24.0
v3.22.03.22.0 · 30 Apr 2026新功能** 支持 DeepSeek V4 Flash 思考模式 — DeepSeek 深度思考模式开启时,会自动禁用工具调用(MCP)和联网搜索(因 langchain4j 兼容性限制),并给出提示 变更** DALL-E 替换为 GPT-Image — 移除 DALL-E 2 / DALL-E 3 组件,统一使用 OpenAI 新版 GPT-Image 图片生成接口 禁用网络搜索 RAG 移除** 删除 DALL-E 2 完整组件(编辑、生成、变体等) 删除 DALL-E…
v3.21.03.21.0 · 6 Mar 2026增加:角色聊天消息可查看当时记忆内容 Full Changelog**: https://github.com/moyangzhan/langchain4j-aideepin-web/compare/v3.20.0...v3.21.0
v3.20.03.20.0 · 23 Jan 2026增加:硅基流动TTS
v3.19.03.19.0 · 18 Nov 2025增加: 硅基流动:文生图、视觉理解 修复: 新建数据库后列表没有刷新 工具=》我的工具未登录状态异常

README

AIDeepIn Web

介绍

本仓库是langchain4j-aideepin的前端项目

LangChain4j-AIDeepin(得应) 是基于AI的工作效率提升工具。

可用于辅助企业/团队进行技术研发、产品设计、规章制度咨询、系统或商品咨询、客服话术支撑等工作

🌟该项目如对您有帮助,欢迎点赞🌟

系统组成及文档

AIDEEPIN

      |__ 服务端(langchain4j-aideepin)

      |__ 用户端WEB(langchain4j-aideepin-web)

      |__ 管理端WEB(langchain4j-aideepin-admin)

👉详细文档

代码仓库地址: github gitee

关联项目

功能点

  • 多会话(多角色)
  • 图片生成(文生图、修图、图生图)
  • 基于大模型的知识库(RAG)
    • 向量搜索
    • 图搜索
  • AI工作流
  • MCP服务市场
  • ASR & TTS
    • 提问及回复的格式可选
      • 文字提问-文字回复
      • 文字提问-语音回复
      • 语音提问-文字回复
      • 语音提问-语音回复
    • AI的音色可选
  • 长期记忆

接入的平台/模型:

  • DeepSeek
  • OpenAI
    • gpt-5-mini
    • gpt-image-2
  • 灵积
    • 通义千问
    • 通义万相
  • 硅基流动
  • 文心一言
  • ollama

前置要求

Node

node v20+

推荐使用使用 nvm 管理本地多个 node 版本

PNPM

pnpm v9+

如果你没有安装过 pnpm

npm install pnpm -g

安装依赖

根目录下运行以下命令

pnpm bootstrap

本地环境开发

1、修改根目录下 .env 文件中的 VITE_GLOB_API_URL 为你的实际后端口地址

2、根目录下运行以下命令

pnpm dev

3、如后端服务为远程地址,使用nginx解决跨域问题

nginx配置参考 ./docker-compose/nginx/nginx.conf

正式环境

发布方式1 - 使用 Docker

Docker build & Run

docker build -t aideepin-web .

# 前台运行
docker run --name aideepin-web --rm -it -p 127.0.0.1:1002:1002 aideepin-web

# 后台运行
docker run --name aideepin-web -d -p 127.0.0.1:1002:1002 aideepin-web

# 运行地址
http://localhost:1002/

发布方式2 - 手动打包

1、 nginx配置

服务器上nginx的配置可以参考 ./docker-compose/nginx/nginx.conf,将 proxy_pass http://localhost:9999/; 中的 localhost:9999改成后端服务对应的ip及端口

如果管理端WEB跟用户端WEB使用同一个nginx,可参考以下配置:

# adi-web存放的是用户端构建后的代码
# adi-admin-web存放的是管理端构建后的代码

# 用户端WEB页面配置
# 访问地址:http://你的ip:port/
location / {
  root /usr/share/nginx/adi-web;
  try_files $uri /index.html;
}

# 管理端WEB页面配置
# 访问地址:http://你的ip:port/admin
  location /admin/ {
    alias /usr/share/nginx/adi-admin-web/;
   	index /index.html;
  }

# 后端服务
location /api/ {
  proxy_set_header X-Real-IP $remote_addr; #转发用户IP
  proxy_pass http://localhost:9999/;
}

2、根目录下运行以下命令,参考信息

pnpm build

3、将 dist 文件夹内的文件复制到网站服务的根目录下

网站服务的根目录:nginx.conflocation / 设置的目录

常见问题

Q: 如果只使用前端页面,在哪里改请求接口?

A: 根目录下 .env 文件中的 VITE_GLOB_API_URL 字段。

Q: 文件保存时全部爆红?

A: vscode 请安装项目推荐插件,或手动安装 Eslint 插件。

Q: 前端没有打字机效果?

A: 一种可能原因是经过 Nginx 反向代理,开启了 buffer,则 Nginx 会尝试从后端缓冲一定大小的数据再发送给浏览器。请尝试在反代参数后添加 proxy_buffering off;,然后重载 Nginx。其他 web server 配置同理。

License

MIT

截图

1691585544443

AI聊天: 1691583184761

AI绘图: draw_001

draw_002

知识库: 1691583329105 1691583329105 1691583329105 1691583329105 kb_graph_01 kb_graph_02

token统计: 1691583329105

README mirrored from the source repository 3 hours ago. The original is authoritative.

Questions

About Langchain4j Aideepin Web

How do I install Langchain4j Aideepin Web?

Run npx langchain4j-aideepin-web, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Langchain4j Aideepin Web safe to use with an AI agent?

Its trust score is 71 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Langchain4j Aideepin Web still maintained?

Yes — the latest release is v3.24.0 (12 May 2026), and the last commit was 7 months ago. The repository has 139 stars and 0 open issues.