AI Skill Hub 推荐使用:vortex AI技能包 是一款优质的AI工具。AI 综合评分 6.3 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。
vortex AI技能包是可安装AI技能包,知识检索、检索增强生成(RAG)。安装后AI可调用专属能力,适合开发者和运营人员。
vortex AI技能包 是一款基于 TypeScript 开发的开源工具,专注于 installable、document-chat、embeddings 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
vortex AI技能包是可安装AI技能包,知识检索、检索增强生成(RAG)。安装后AI可调用专属能力,适合开发者和运营人员。
vortex AI技能包 是一款基于 TypeScript 开发的开源工具,专注于 installable、document-chat、embeddings 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:npm 全局安装 npm install -g vortex # 方式二:npx 直接运行(无需安装) npx vortex --help # 方式三:项目依赖安装 npm install vortex # 方式四:从源码运行 git clone https://github.com/ankushchhabra02/vortex cd vortex npm install npm start
# 命令行使用
vortex --help
# 基本用法
vortex [options] <input>
# Node.js 代码中使用
const vortex = require('vortex');
const result = await vortex.run(options);
console.log(result);
# vortex 配置说明 # 查看配置选项 vortex --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export VORTEX_CONFIG="/path/to/config.yml"
<p align="center"> <h1 align="center">Vortex</h1> <p align="center">Open-source RAG chat application with multi-provider LLM support</p> </p>
<p align="center"> <a href="https://github.com/ankushchhabra02/vortex/actions/workflows/ci.yml"><img src="https://github.com/ankushchhabra02/vortex/actions/workflows/ci.yml/badge.svg" alt="CI"></a> <img src="https://img.shields.io/github/stars/ankushchhabra02/vortex" alt="Stars"> <img src="https://img.shields.io/github/license/ankushchhabra02/vortex" alt="License"> <img src="https://img.shields.io/badge/deploy-vercel-blue" alt="Deploy"> <a href="https://github.com/ankushchhabra02/vortex/issues"><img src="https://img.shields.io/github/issues/ankushchhabra02/vortex" alt="Issues"></a> </p>
<p align="center"> <a href="#quick-start">Quick Start</a> · <a href="#features">Features</a> · <a href="#architecture">Architecture</a> · <a href="#deployment">Deployment</a> · <a href="CONTRIBUTING.md">Contributing</a> </p>
---
Vortex is a self-hosted RAG (Retrieval-Augmented Generation) application that lets you chat with your documents using any LLM provider. Upload PDFs, ingest URLs, and get accurate answers grounded in your own knowledge bases — with hybrid search, re-ranking, and source citations.
Works out of the box with free models. No API key required to get started.
```bash
git clone https://github.com/ankushchhabra02/vortex.git cd vortex npm install
1. Create a new Supabase project 2. In the SQL Editor, run these migrations in order: - supabase/migrations/001_initial_schema.sql — Core tables, RLS policies, vector search - supabase/migrations/002_multi_provider.sql — Multi-provider support, flexible embeddings - supabase/migrations/003_soft_deletes.sql — Soft delete columns and indexes - supabase/migrations/004_hybrid_search.sql — Full-text search index and hybrid search function - supabase/migrations/005_fix_search_functions.sql — Optimized search thresholds and scoring 3. Copy your project URL, anon key, and service role key into .env.local
cp .env.example .env.local
```
| Variable | Required | Description |
|---|---|---|
NEXT_PUBLIC_SUPABASE_URL | Yes | Supabase project URL |
NEXT_PUBLIC_SUPABASE_ANON_KEY | Yes | Supabase anonymous key |
SUPABASE_SERVICE_ROLE_KEY | Yes | Supabase service role key |
OPENROUTER_API_KEY | No | OpenRouter API key (free models work without it) |
ENCRYPTION_KEY | Yes | 32-byte hex string for encrypting stored API keys |
NEXT_PUBLIC_APP_URL | No | App URL (defaults to localhost:3000) |

[n] citation notation linking back to specific document sources, displayed as interactive badges in the chat UI."Unauthorized" errors — Verify your Supabase keys are correct and you're logged in. Check the browser console for auth errors.
Embeddings not generating — Ensure Node.js 18+. Try clearing the cache with rm -rf .next and restarting.
Chat not responding — Check your LLM provider settings. If using a paid model, verify the API key is set and valid in Settings.
Database errors after update — Make sure you've run all 5 SQL migrations in order (001 through 005). Migration 002 drops and recreates the embedding column — existing embeddings will need to be re-ingested.
Generic/irrelevant chat responses — Ensure migration 005 has been applied. It fixes search thresholds and hybrid scoring. Also verify the KB has documents ingested (check the sidebar document list).
Vortex 是一个开源的 RAG 聊天应用,支持多个 LLM 提供商
Vortex 的核心功能包括知识库管理、文档 ingestion 和实时聊天功能
环境依赖与系统要求:Node.js 18+、Supabase 账户(免费版可用)和 OpenRouter API 密钥(可选)
安装步骤:克隆项目、安装依赖、设置数据库(包括 Supabase 和 OpenRouter 项目)
快速入门:克隆项目、安装依赖、设置环境变量和 Supabase 和 OpenRouter 项目
配置环境变量:NEXT_PUBLIC_SUPABASE_URL、NEXT_PUBLIC_SUPABASE_ANON_KEY、SUPABASE_SERVICE_ROLE_KEY 和 OPENROUTER_API_KEY
聊天接口:用于与 Vortex 聊天应用进行交互
RAG 管道:包括混合搜索(结合向量相似度和关键词匹配)和重新排名(基于精确短语匹配和关键词密度)
常见问题:解决方案包括验证 Supabase 密钥、检查 Node.js 版本和清除缓存
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,vortex AI技能包 是一款质量良好的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | vortex |
| 原始描述 | 开源AI工具:Vortex is a self-hosted RAG (Retrieval-Augmented Generation) application that le。⭐17 · TypeScript |
| Topics | installabledocument-chatembeddingsllmopen-sourceopenroutertypescript |
| GitHub | https://github.com/ankushchhabra02/vortex |
| License | MIT |
| 语言 | TypeScript |
收录时间:2026-05-16 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。