diff options
| author | Grail Finder <wohilas@gmail.com> | 2026-03-15 11:50:22 +0300 |
|---|---|---|
| committer | Grail Finder <wohilas@gmail.com> | 2026-03-15 11:50:22 +0300 |
| commit | e47657533453270565caa5e94cfa59307d2a7970 (patch) | |
| tree | 30fae510369e8d86c65f613302d08fc2221d10eb /rag/rag_integration_test.go | |
| parent | 7e346b5e1971c21d24945c2f09c60b7463a619d1 (diff) | |
Chore: linter complaints
Diffstat (limited to 'rag/rag_integration_test.go')
| -rw-r--r-- | rag/rag_integration_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rag/rag_integration_test.go b/rag/rag_integration_test.go index 6cd56c6..39c5011 100644 --- a/rag/rag_integration_test.go +++ b/rag/rag_integration_test.go @@ -52,6 +52,7 @@ func (d dummyStore) ChatGetMaxID() (uint32, error) { ret func (d dummyStore) Memorise(m *models.Memory) (*models.Memory, error) { return m, nil } func (d dummyStore) Recall(agent, topic string) (string, error) { return "", nil } func (d dummyStore) RecallTopics(agent string) ([]string, error) { return nil, nil } +func (d dummyStore) Forget(agent, topic string) error { return nil } // VectorRepo methods (not used but required by interface) func (d dummyStore) WriteVector(row *models.VectorRow) error { return nil } |
