From b4d6a425a2b1fac072bd609e39aba3f4da71d7db Mon Sep 17 00:00:00 2001 From: joaoareis <34096208+joaoareis@users.noreply.github.com> Date: Fri, 7 Apr 2023 19:17:15 +0100 Subject: [PATCH] Fix typo in ChatGPT plugins (#2553) This PR adds a `,` that was missing in the ChatGPT plugins examples. --- docs/modules/agents/tools/examples/chatgpt_plugins.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/agents/tools/examples/chatgpt_plugins.ipynb b/docs/modules/agents/tools/examples/chatgpt_plugins.ipynb index caf2a30fde..111a8777b9 100644 --- a/docs/modules/agents/tools/examples/chatgpt_plugins.ipynb +++ b/docs/modules/agents/tools/examples/chatgpt_plugins.ipynb @@ -84,7 +84,7 @@ "tools = load_tools([\"requests\"] )\n", "tools += [tool]\n", "\n", - "agent_chain = initialize_agent(tools, llm, agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION verbose=True)\n", + "agent_chain = initialize_agent(tools, llm, agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION, verbose=True)\n", "agent_chain.run(\"what t shirts are available in klarna?\")" ] },