summaryrefslogtreecommitdiff
path: root/rag
diff options
context:
space:
mode:
Diffstat (limited to 'rag')
-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 }