From dc409e69fa6b703ca35a33731af6a26efc8ec237 Mon Sep 17 00:00:00 2001 From: Dinesh Yeduguru Date: Tue, 5 Nov 2024 11:10:10 -0800 Subject: [PATCH] fix tests' --- .../providers/impls/meta_reference/memory/tests/test_faiss.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llama_stack/providers/impls/meta_reference/memory/tests/test_faiss.py b/llama_stack/providers/impls/meta_reference/memory/tests/test_faiss.py index 2513fe6ce..194210138 100644 --- a/llama_stack/providers/impls/meta_reference/memory/tests/test_faiss.py +++ b/llama_stack/providers/impls/meta_reference/memory/tests/test_faiss.py @@ -29,11 +29,13 @@ def sample_chunks(): document_id="doc1", content="This is the first test chunk", metadata={"test": "metadata1"}, + token_count=7 ), Chunk( document_id="doc2", content="This is the second test chunk", metadata={"test": "metadata2"}, + token_count=7 ), ]