Troubleshooting¶
VDB Connection Fails¶
What happened: The vector store backend could not connect.
Fix:
- Verify the backend is installed (
pip install "bijux-vex[vdb]"). - Check the URI or file path.
- Run
bijux vex vdb status --vector-store <name>.
ANN Not Installed¶
What happened: ANN execution requested but the ANN runner is unavailable.
Fix:
- Use
--execution-contract deterministic. - Use exact mode or install the ANN backend for your environment.
Embedding Provider Missing¶
What happened: --embed-model specified but provider not installed.
Fix:
- Install embeddings extras:
pip install "bijux-vex[embeddings]". - Provide a registered provider name.
Determinism Refused¶
What happened: Deterministic contract requested with a non-deterministic backend.
Fix:
- Use exact mode (
--execution-contract deterministic). - Avoid ANN until it is marked stable.
Unknown Vector Store¶
What happened: --vector-store name not registered.
Fix:
- Check
bijux vex capabilities. - Install the plugin that provides the backend.