Is there an example of using ReActAgent without using OpenAI LLM? I set one up through HuggingFaceLLM but the response time is much longer and unable to get right results in contrast to OpenAI.
The react agent uses many more LLM calls compared to the openai agent, so it's inherently slower
Tbh I would really only use the react agent with other LLM providers (Anthropic, PaLM), because you need a high level of reasoning capability and high reliability
Maybe some 30-70B sized open source models will do ok-ish, assuming you configure the query wrapper as needed
My purpose is to call external functions/script through LLM, using agent is the right way? Also, I assume OpenAI agent is better than ReAct, am I correct?