Versions in this module Expand all Collapse all v0 v0.1.0 Apr 25, 2026 v0.0.2 Apr 22, 2026 Changes in this version + type AutoIndexer struct + func New(sc FileGetter, graph GraphWriter, cache *memory.ContentCache, ...) *AutoIndexer + func (ai *AutoIndexer) Run(ctx context.Context, repos []scanner.RepoInfo) + type FileGetter interface + GetFileContent func(ctx context.Context, repo, path string) (string, error) + type GraphWriter interface + AddObservations func([]memory.Observation) ([]memory.Observation, error) + CreateEntities func([]memory.Entity) ([]memory.Entity, error) + CreateRelations func([]memory.Relation) ([]memory.Relation, error) + EntityCount func() (int64, error) + SearchNodes func(query string) (memory.KnowledgeGraph, error)