From c1973f6528e81be63c976d79cf947ae9cc068a63 Mon Sep 17 00:00:00 2001 From: Francisco Arceo Date: Mon, 7 Apr 2025 03:58:33 -0600 Subject: [PATCH 1/2] docs: Fix typo in README.md (#1880) # What does this PR do? Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5442fe5d2..0a741f916 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ ### ✨🎉 Llama 4 Support 🎉✨ -We release [Version 0.2.0](https://github.com/meta-llama/llama-stack/releases/tag/v0.2.0) with support for the Llama 4 herd of models released by Meta. +We released [Version 0.2.0](https://github.com/meta-llama/llama-stack/releases/tag/v0.2.0) with support for the Llama 4 herd of models released by Meta. You can now run Llama 4 models on Llama Stack. From c52ccc4bbdb9844489264e9d52b07c205692e6f2 Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Mon, 7 Apr 2025 06:31:04 -0400 Subject: [PATCH 2/2] docs: update importing_as_library.md (#1863) LlamaStackAsLibraryClient.initialize is not async, cannot be await'd --- 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 29a5669b3..967a18b54 100644 --- a/docs/source/distributions/importing_as_library.md +++ b/docs/source/distributions/importing_as_library.md @@ -17,7 +17,7 @@ client = LlamaStackAsLibraryClient( # 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"]}, ) -await client.initialize() +client.initialize() ``` This will parse your config and set up any inline implementations and remote clients needed for your implementation.