-
Notifications
You must be signed in to change notification settings - Fork 634
Description
System Info
Python version: 3.10.12
Pytorch version:
llama_models version: 0.0.45
llama_stack version: 0.0.45
llama_stack_client version: 0.0.47
Hardware: 1xH100 (80GB VRAM/GPU)
Information
- The official example scripts
- My own modified scripts
🐛 Describe the bug
Running the following commands to create the memory bank and launch the app:
PYTHONPATH=. python examples/agent_store/build_index.py [::] 5000 examples/agent_store/local_knowledge
# Successfully created bank: memory_bank
PYTHONPATH=. python examples/agent_store/app.py [::] 5000 --bank-ids memory_bank
llama-stack-client memory_banks list shows the available banks are memory_bank and live_bank, but live_bank can not be cleared with the Clear Bank button.
Error logs
The memory banks stay the same after clicking Clear Bank button. Basically, the llama-stack-client memory_banks list shows the same memory banks even after clicking Clear Bank button.
Expected behavior
Expect that the Clear Bank button will remove/un-register the live_bank (dynamic bank) and keep memory_bank (static bank). Hope this can be fixed, or at least, could you share any command line to manually clear/remove/un-register the memory bank?
