LEM scoring pipeline, native MLX Metal bindings, Claude SDK wrapper, RAG with Qdrant/Ollama, unified AI facade, and MCP protocol server. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
475 B
Go
11 lines
475 B
Go
// Package ai provides the unified AI package for the core CLI.
|
|
//
|
|
// It composes functionality from pkg/rag (vector search) and pkg/agentic
|
|
// (task management) into a single public API surface. New AI features
|
|
// should be added here; existing packages remain importable but pkg/ai
|
|
// is the canonical entry point.
|
|
//
|
|
// Sub-packages composed:
|
|
// - pkg/rag: Qdrant vector database + Ollama embeddings
|
|
// - pkg/agentic: Task queue client and context building
|
|
package ai
|