From 183337824020a9c5a478d0a9ce5f70edd63fe34f Mon Sep 17 00:00:00 2001 From: pulvedu Date: Wed, 19 Mar 2025 15:10:36 -0400 Subject: [PATCH] update extract-docs --- docs/docs/integrations/tools/tavily_extract.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/integrations/tools/tavily_extract.ipynb b/docs/docs/integrations/tools/tavily_extract.ipynb index 842fe704841..f5eca2262b7 100644 --- a/docs/docs/integrations/tools/tavily_extract.ipynb +++ b/docs/docs/integrations/tools/tavily_extract.ipynb @@ -333,7 +333,7 @@ "# Create an Agent Executor to handle tool execution\n", "agent_executor = AgentExecutor(agent=agent, tools=[tavily_search_tool], verbose=True)\n", "\n", - "user_input = (\"['https://en.wikipedia.org/wiki/Albert_Einstein','https://en.wikipedia.org/wiki/Theoretical_physics']\")\n", + "user_input = \"['https://en.wikipedia.org/wiki/Albert_Einstein','https://en.wikipedia.org/wiki/Theoretical_physics']\"\n", "\n", "# Construct input properly as a dictionary\n", "response = agent_executor.invoke({\"messages\": [HumanMessage(content=user_input)]})\n",