mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-05 23:03:55 +00:00
1ae8035470
- [x] Add golangci.yml configuration with fieldalignment linter - [x] Implement observation graph structure with edge detection - [x] Add LEANN-inspired hybrid vector storage with hub threshold - [x] Implement graph-aware search with selective recomputation - [x] Add auto-tuner for dynamic hub threshold adjustment - [x] Add graph and vector metrics tracking and reporting - [x] Extend configuration for graph parameters - [x] Add graph rebuild background service with periodic updates - [x] Add HTTP endpoints for graph stats and vector metrics - [x] Update UI with advanced metrics sidebar panel - [x] Implement AST-aware code chunking for Go, Python, TypeScript
36 lines
1.3 KiB
Modula-2
36 lines
1.3 KiB
Modula-2
module github.com/lukaszraczylo/claude-mnemonic
|
|
|
|
go 1.25.1
|
|
|
|
replace github.com/sugarme/tokenizer => github.com/clems4ever/tokenizer v0.0.0-20250926133620-9ddc80533c43
|
|
|
|
require (
|
|
github.com/asg017/sqlite-vec-go-bindings v0.1.6
|
|
github.com/fsnotify/fsnotify v1.9.0
|
|
github.com/go-chi/chi/v5 v5.2.3
|
|
github.com/goccy/go-json v0.10.5
|
|
github.com/mattn/go-sqlite3 v1.14.32
|
|
github.com/rs/zerolog v1.34.0
|
|
github.com/smacker/go-tree-sitter v0.0.0-20240827094217-dd81d9e9be82
|
|
github.com/stretchr/testify v1.11.1
|
|
github.com/sugarme/tokenizer v0.3.0
|
|
github.com/yalue/onnxruntime_go v1.25.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/emirpasic/gods v1.18.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/schollz/progressbar/v2 v2.15.0 // indirect
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
github.com/sugarme/regexpset v0.0.0-20200920021344-4d4ec8eaf93c // indirect
|
|
golang.org/x/sys v0.39.0 // indirect
|
|
golang.org/x/text v0.32.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|