mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-14 11:30:41 +00:00
- 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.
8 lines
146 B
Bash
Executable File
8 lines
146 B
Bash
Executable File
#!/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
|