From c804173902116dc39937604ca6b0f2229ba87c6a Mon Sep 17 00:00:00 2001 From: raghotham Date: Mon, 31 Mar 2025 11:41:10 -0700 Subject: [PATCH] Update docs/source/getting_started/index.md Co-authored-by: Francisco Arceo --- docs/source/getting_started/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/getting_started/index.md b/docs/source/getting_started/index.md index 19ddb3c72..7a8190761 100644 --- a/docs/source/getting_started/index.md +++ b/docs/source/getting_started/index.md @@ -134,7 +134,7 @@ client = LlamaStackClient(base_url=f"http://localhost:8321") # List available models models = client.models.list() -# Find the first LLM +# Select the first LLM llm = next(m for m in models if m.model_type == 'llm') model_id = llm.identifier