feat/rag-v1 #52
No reviewers
Labels
No labels
Agent
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
joshtronic/igor!52
Loading…
Reference in a new issue
No description provided.
Delete branch "feat/rag-v1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The point of "bin/install.sh" is clone-and-go. Adding RAG broke that slightly: new prereqs (python3-venv, redis-stack-server) and the Python venv setup were undocumented and had to be done manually. Changes: - install.sh pre-flight now checks python3, python3-venv module, and redis-cli on PATH. Bails with apt-installable package suggestions. - New pre-flight: redis-cli MODULE LIST must show "search" -- catches the common error of running vanilla redis-server instead of redis-stack-server. - install.sh now runs bin/setup-rag.sh as part of install, so the Python venv exists and deps are installed BEFORE the first tick. Idempotent (no-op if requirements.txt is unchanged). - README.md prereq section beefed up to call out the new requirements explicitly and point at docs/setup.md. - docs/setup.md rewritten in the same shape; adds a one-liner check ("redis-cli MODULE LIST | grep -i search") so it's easy to verify Redis Stack is the active server.