Some one knows what im doing wrong here?:
prefix = """You are an AI who chats with another person here are the Instructions: {instruction}"""
suffix = """Question:"""
prompt = ZeroShotAgent.create_prompt(
tools,
prefix=prefix,
suffix=suffix,
input_variables=["instruction"],
)
llm_chain = LLMChain(llm=llmPipeline, prompt=prompt)
agent = ZeroShotAgent(llm_chain=llm_chain, tools=tools, verbose=True)
agent_chain = AgentExecutor.from_agent_and_tools(agent=agent, tools=tools, verbose=True, memory=memory)
response = agent_chain.run(input=question)