Hello, I am writing because I am trying to use Zapier NLA to connect to google calendar as tools in a Langchain agent:
zapier = ZapierNLAWrapper()
toolkit = ZapierToolkit.from_zapier_nla_wrapper(zapier)
tools = toolkit.tools + [
ScrapingAutosOpcionAutos(), # custom tool
DetailsAuto(), # custom tool
ScrapingImagesAutos(), # custom tool
]
TEMPLATE = """
......
"""
agent = initialize_agent(
agent=AgentType.STRUCTURED_CHAT_ZERO_SHOT_REACT_DESCRIPTION,
tools=tools,
llm=self.llm,
memory=self.conversational_memory,
agent_kwargs={
'prefix': TEMPLATE,
},
)
return agent.run(questions)
but when I request to generate an event in the calendar I get the following error:
ZapierNLARunAction._run() got an unexpected keyword argument 'Describe_Event'.
or:
ZapierNLARunAction._run() got an unexpected keyword argument 'Calendar'
please, someone could help me