mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 04:04:14 +00:00
fix: Add missing files_api parameter to MemoryToolRuntimeImpl test (#3394)
# What does this PR do? <!-- Provide a short summary of what this PR does and why. Link to relevant issues if applicable. --> 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. <!-- If resolving an issue, uncomment and update the line below --> <!-- Closes #[issue-number] --> ## Test Plan <!-- Describe the tests you ran to verify your changes with result summaries. *Provide clear instructions so the plan can be easily re-executed.* -->
This commit is contained in:
parent
1c23aeb937
commit
1671431310
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