From a22ba377c52861d25162a3ef6c0b83e0d8c93f38 Mon Sep 17 00:00:00 2001 From: jsell-rh Date: Tue, 27 May 2025 15:20:03 -0400 Subject: [PATCH] fix(docs): Remove unused import. The import: `from llama_stack_client.types.agent_create_params import AgentConfig` is not used in the docs and, further, AgentConfig is not exported from `agent_create_params`. --- docs/source/building_applications/tools.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/source/building_applications/tools.md b/docs/source/building_applications/tools.md index c7af17bfa..d743da153 100644 --- a/docs/source/building_applications/tools.md +++ b/docs/source/building_applications/tools.md @@ -177,7 +177,6 @@ export TAVILY_SEARCH_API_KEY="your key" 3. Run the following script. ```python from llama_stack_client.lib.agents.agent import Agent -from llama_stack_client.types.agent_create_params import AgentConfig from llama_stack_client.lib.agents.event_logger import EventLogger from llama_stack_client import LlamaStackClient