Feat: new rag attempt

This commit is contained in:
Grail Finder
2025-10-09 16:19:43 +03:00
parent 5d2ce7a5f5
commit 2e1b018a45
8 changed files with 893 additions and 67 deletions

View File

@@ -113,3 +113,8 @@ func NewProviderSQL(dbPath string, logger *slog.Logger) FullRepo {
p.Migrate()
return p
}
// DB returns the underlying database connection
func (p ProviderSQL) DB() *sqlx.DB {
return p.db
}