summaryrefslogtreecommitdiff
path: root/rag/rag_integration_test.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-03-15 11:50:22 +0300
committerGrail Finder <wohilas@gmail.com>2026-03-15 11:50:22 +0300
commite47657533453270565caa5e94cfa59307d2a7970 (patch)
tree30fae510369e8d86c65f613302d08fc2221d10eb /rag/rag_integration_test.go
parent7e346b5e1971c21d24945c2f09c60b7463a619d1 (diff)
Chore: linter complaints
Diffstat (limited to 'rag/rag_integration_test.go')
-rw-r--r--rag/rag_integration_test.go1
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 }