From 36b052ab10ee9af257ef0236c26bc2924d6fde5a Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Tue, 12 Nov 2024 22:11:46 -0800 Subject: [PATCH] slightly update README.md --- llama_stack/providers/tests/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/llama_stack/providers/tests/README.md b/llama_stack/providers/tests/README.md index 6a4bc1d05..90b41a631 100644 --- a/llama_stack/providers/tests/README.md +++ b/llama_stack/providers/tests/README.md @@ -66,4 +66,10 @@ pytest -s -m together llama_stack/providers/tests/agents/test_agents.py \ --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=<...> +```