captain_blur

Results 2 comments of captain_blur

> sorry for missing this, agree we need to fix this > > `if set(expected_keys).difference(set(prompt_variables)):` should be changed, we need to do this to unlock using prompts with more than...

> I am using the langchain agent. I have passed **handle_parsing_errors=True** this solved my issue llm_chain = LLMChain(llm=OpenAI(model_name = "gpt-4", temperature=0), prompt=prompt) agent = ZeroShotAgent(llm_chain=llm_chain, tools=tools, verbose=True) agent_chain = AgentExecutor.from_agent_and_tools(agent=agent,...