mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 12:07:34 +00:00
fix: Add missing files_api parameter to MemoryToolRuntimeImpl test
The test_query_adds_vector_db_id_to_chunk_metadata test was failing because MemoryToolRuntimeImpl.__init__() now requires a files_api parameter. Fixes failing unit tests for Python 3.12 and 3.13.
This commit is contained in:
parent
1c23aeb937
commit
94e88cb378
1 changed files with 1 additions and 0 deletions
|
@ -88,6 +88,7 @@ class TestRagQuery:
|
||||||
config=MagicMock(),
|
config=MagicMock(),
|
||||||
vector_io_api=MagicMock(),
|
vector_io_api=MagicMock(),
|
||||||
inference_api=MagicMock(),
|
inference_api=MagicMock(),
|
||||||
|
files_api=MagicMock(),
|
||||||
)
|
)
|
||||||
|
|
||||||
vector_db_ids = ["db1", "db2"]
|
vector_db_ids = ["db1", "db2"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue