go-ai/cmd/rag/cmd.go
Snider d962260b81 feat(cmd/rag): re-export go-rag CLI commands through go-ai
CLI should import RAG commands via go-ai (which already depends on
go-rag), not directly. This keeps the CLI's dependency tree clean.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-02-21 20:23:22 +00:00

7 lines
256 B
Go

// Package rag re-exports go-rag's CLI commands for use in the core CLI.
package rag
import ragcmd "forge.lthn.ai/core/go-rag/cmd/rag"
// AddRAGSubcommands registers RAG commands as subcommands of parent.
var AddRAGSubcommands = ragcmd.AddRAGSubcommands