You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying this out, but even with the following code above the openai call here, https://github.com/eylonmiz/react-agent/blob/main/backend/main/react-agent/utils/ChatBot.ts#L156
@RCSnyder Even i was facing the same issue but for me status is coming as 404. @eylonmiz First of all great work on the repo, could you help us in resolving the issue.
Thank you guys!
These issues come from your API access and limitations by OpenAI.
The project uses OpenAI GPT4, which is disabled or limited for most users.
429 -> too many requests, I'm generating independent components in parallel (Promise.all), maybe if you change it to one by one it will work better in your setup.
404 -> Make sure you have the right API key with access to GPT4, (if you do, please make sure you don't have necessary spaces or quotes in '.env' file.
I will make sure to resolve these issues soon, please sign up for updates on reactagent.io or join the Discord.
Currently, I'm working on designing the V1 Architecture, so no fixes/features for the next week, but after that, I'll be working on resolving issues and cooler features, possibly supporting GPT3.5 and possibly a free limited hosted version! @akshay-shrivastava@RCSnyder
If you found a fix you are more than welcome to open a PR and I'll review!
This is an incredible concept! Awesome job!
I am trying this out, but even with the following code above the openai call here,
https://github.com/eylonmiz/react-agent/blob/main/backend/main/react-agent/utils/ChatBot.ts#L156
I am getting this error 429 error from
yarn backend:dev
I was wondering if anyone else had encountered this.
Thanks
The text was updated successfully, but these errors were encountered: