## Summary - Extract PHP/Laravel commands to `core/php` repo (42 files, standalone module) - Extract CI/release + SDK commands to `core/ci` repo (10 files) - Remove `internal/variants/` build tag system entirely - Move all 30 remaining command packages from `internal/cmd/` to top-level `cmd/` - Rewrite `main.go` with direct imports — no more variant selection - PHP and CI are now optional via commented import lines in main.go Co-authored-by: Claude <developers@lethean.io> Reviewed-on: #2 Co-authored-by: Charon <charon@lthn.ai> Co-committed-by: Charon <charon@lthn.ai>
81 lines
1.6 KiB
Go
81 lines
1.6 KiB
Go
package rag
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"forge.lthn.ai/core/go/pkg/i18n"
|
|
"forge.lthn.ai/core/go/pkg/rag"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
queryCollection string
|
|
limit int
|
|
threshold float32
|
|
category string
|
|
format string
|
|
)
|
|
|
|
var queryCmd = &cobra.Command{
|
|
Use: "query [question]",
|
|
Short: i18n.T("cmd.rag.query.short"),
|
|
Long: i18n.T("cmd.rag.query.long"),
|
|
Args: cobra.ExactArgs(1),
|
|
RunE: runQuery,
|
|
}
|
|
|
|
func runQuery(cmd *cobra.Command, args []string) error {
|
|
question := args[0]
|
|
ctx := context.Background()
|
|
|
|
// Connect to Qdrant
|
|
qdrantClient, err := rag.NewQdrantClient(rag.QdrantConfig{
|
|
Host: qdrantHost,
|
|
Port: qdrantPort,
|
|
UseTLS: false,
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("failed to connect to Qdrant: %w", err)
|
|
}
|
|
defer func() { _ = qdrantClient.Close() }()
|
|
|
|
// Connect to Ollama
|
|
ollamaClient, err := rag.NewOllamaClient(rag.OllamaConfig{
|
|
Host: ollamaHost,
|
|
Port: ollamaPort,
|
|
Model: model,
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("failed to connect to Ollama: %w", err)
|
|
}
|
|
|
|
// Configure query
|
|
if limit < 0 {
|
|
limit = 0
|
|
}
|
|
cfg := rag.QueryConfig{
|
|
Collection: queryCollection,
|
|
Limit: uint64(limit),
|
|
Threshold: threshold,
|
|
Category: category,
|
|
}
|
|
|
|
// Run query
|
|
results, err := rag.Query(ctx, qdrantClient, ollamaClient, question, cfg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Format output
|
|
switch format {
|
|
case "json":
|
|
fmt.Println(rag.FormatResultsJSON(results))
|
|
case "context":
|
|
fmt.Println(rag.FormatResultsContext(results))
|
|
default:
|
|
fmt.Println(rag.FormatResultsText(results))
|
|
}
|
|
|
|
return nil
|
|
}
|