From 19c90d9bfceb4bfb4626401cabaf624cd57f3af6 Mon Sep 17 00:00:00 2001 From: Mark Campbell Date: Mon, 28 Jul 2025 23:35:26 +0100 Subject: [PATCH] docs: update using llama stack as library docs (#2931) # What does this PR do? Updates provider template from outdated `ollama` to `starter` Closes: #2839 ## Test Plan --- docs/source/distributions/importing_as_library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/distributions/importing_as_library.md b/docs/source/distributions/importing_as_library.md index fe82d2db5..3427356a7 100644 --- a/docs/source/distributions/importing_as_library.md +++ b/docs/source/distributions/importing_as_library.md @@ -13,7 +13,7 @@ llama stack build --template starter --image-type venv from llama_stack.distribution.library_client import LlamaStackAsLibraryClient client = LlamaStackAsLibraryClient( - "ollama", + "starter", # provider_data is optional, but if you need to pass in any provider specific data, you can do so here. provider_data={"tavily_search_api_key": os.environ["TAVILY_SEARCH_API_KEY"]}, )