feat: enhance docs chat with vector-based RAG pipeline

- Added vector index building and serving capabilities to the docs chat.
- Introduced new scripts for generating embeddings and serving the chat API using vector search.
- Updated package.json with new commands for vector index operations.
- Enhanced README with instructions for the new RAG pipeline and legacy keyword pipeline.
- Removed outdated Vercel configuration file.
This commit is contained in:
Buns Enchantress
2026-02-03 02:10:11 -06:00
parent 447a3d66c0
commit 332d9a2ad1
11 changed files with 828 additions and 26 deletions

7
scripts/docs-chat/run.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -euo pipefail
: "${OPENAI_API_KEY:?OPENAI_API_KEY is required}"
pnpm docs:chat:index:vector
pnpm docs:chat:serve:vector