From 8ba29b19f2f4e0335273ed0c2696c5e7be22543b Mon Sep 17 00:00:00 2001 From: Derek Slager Date: Mon, 30 Dec 2024 14:19:05 -0800 Subject: [PATCH] Minor Quick Start documentation updates. (#692) Clarifying Python version requirement, fixing a sample command. --- docs/source/getting_started/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/getting_started/index.md b/docs/source/getting_started/index.md index 04ba6e4e4..d7c3fe9e5 100644 --- a/docs/source/getting_started/index.md +++ b/docs/source/getting_started/index.md @@ -43,7 +43,7 @@ Configuration for this is available at `distributions/ollama/run.yaml`. ### 3. Use the Llama Stack client SDK -You can interact with the Llama Stack server using various client SDKs. We will use the Python SDK which you can install using: +You can interact with the Llama Stack server using various client SDKs. We will use the Python SDK which you can install using the following command. Note that you must be using Python 3.10 or newer: ```bash pip install llama-stack-client ``` @@ -62,7 +62,7 @@ llama-stack-client models list You can test basic Llama inference completion using the CLI too. ```bash -llama-stack-client +llama-stack-client \ inference chat-completion \ --message "hello, what model are you?" ```