diff --git a/docs/source/distributions/index.md b/docs/source/distributions/index.md index 1f766e75e..9be2e9ec5 100644 --- a/docs/source/distributions/index.md +++ b/docs/source/distributions/index.md @@ -27,8 +27,6 @@ If you have built a container image and want to deploy it in a Kubernetes cluste :hidden: importing_as_library -building_distro configuration -selection kubernetes_deployment ``` diff --git a/docs/source/index.md b/docs/source/index.md index 12a27bd2b..659f955cb 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -93,7 +93,6 @@ getting_started/index concepts/index providers/index distributions/index -distributions/selection building_applications/index playground/index contributing/index diff --git a/docs/source/playground/index.md b/docs/source/playground/index.md index 2940ff988..9691609ab 100644 --- a/docs/source/playground/index.md +++ b/docs/source/playground/index.md @@ -92,8 +92,6 @@ Interactive pages for users to play with and explore Llama Stack API capabilitie ## Starting the Llama Stack Playground -### Llama CLI - To start the Llama Stack Playground, run the following commands: 1. Start up the Llama Stack API server @@ -109,29 +107,3 @@ cd llama_stack/distribution/ui pip install -r requirements.txt streamlit run app.py ``` - -### Docker - -Playground can also be started in a docker image: - -```sh -export LLAMA_STACK_URL=http://localhost:11434 - -docker run \ - --pull always \ - -p 8501:8501 \ - -e LLAMA_STACK_ENDPOINT=$LLAMA_STACK_URL \ - quay.io/jland/llama-stack-playground -``` - -## Configurable Environment Variables - -## Environment Variables - -| Environment Variable | Description | Default Value | -|----------------------------|------------------------------------|---------------------------| -| LLAMA_STACK_ENDPOINT | The endpoint for the Llama Stack | http://localhost:8321 | -| FIREWORKS_API_KEY | API key for Fireworks provider | (empty string) | -| TOGETHER_API_KEY | API key for Together provider | (empty string) | -| SAMBANOVA_API_KEY | API key for SambaNova provider | (empty string) | -| OPENAI_API_KEY | API key for OpenAI provider | (empty string) |