slightly update README.md

This commit is contained in:
Ashwin Bharambe 2024-11-12 22:11:46 -08:00
parent 12947ac19e
commit 36b052ab10

View file

@ -66,4 +66,10 @@ pytest -s -m together llama_stack/providers/tests/agents/test_agents.py \
--env TOGETHER_API_KEY=<...> --env TOGETHER_API_KEY=<...>
``` ```
If you want to override the inference model or safety model used, you can use the `--inference-model` or `--safety-model` CLI options as appropriate. If you want to override the inference model or safety model used, you can use the `--inference-model` or `--safety-shield` CLI options as appropriate.
If you wanted to test a remotely hosted stack, you can use `-m remote` as follows:
```bash
pytest -s -m remote llama_stack/providers/tests/agents/test_agents.py \
--env REMOTE_STACK_URL=<...>
```