From b9a67288874372703751e05735b3531b2f9b263a Mon Sep 17 00:00:00 2001 From: Harsh Jha <83023263+rapid-killer-9@users.noreply.github.com> Date: Tue, 3 Feb 2026 12:30:26 +0530 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Anubhav Dhawan Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- docs/en/sdks/python-sdk/llamaindex/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/sdks/python-sdk/llamaindex/index.md b/docs/en/sdks/python-sdk/llamaindex/index.md index daa7867326..e8d1a7b935 100644 --- a/docs/en/sdks/python-sdk/llamaindex/index.md +++ b/docs/en/sdks/python-sdk/llamaindex/index.md @@ -1,9 +1,9 @@ --- -title: "llamaindex" +title: "LlamaIndex" type: docs weight: 8 description: > - Toolbox-llamaindex SDK for connecting to the MCP Toolbox server and invoking tools programmatically. + MCP Toolbox LlamaIndex SDK for integrating functionalities of MCP Toolbox into your LlamaIndex apps. --- ## Overview @@ -129,7 +129,7 @@ vertex_model = GoogleGenAI( agent = AgentWorkflow.from_tools_or_functions( tools, llm=vertex_model, - system_prompt="You are a helpful assistant", + system_prompt="You are a helpful assistant.", ) # Save memory in agent context @@ -194,7 +194,7 @@ from toolbox_llamaindex import ToolboxClient async with ToolboxClient( "toolbox-url", - client_headers={"header1": header1_getter, "header2": header2_getter, ...} + client_headers={"header1": header1_getter, "header2": header2_getter}, ) as client: ```