Hey everyone, I am trying to install an unverified plugin that I have deployed on replit.
I have verified that all the endpoints are functional including /.well-known/ai-plugin.json
When I try to install it in the ChatGPT UI, I am getting the below error:
I have seen this post, where i can see mention about HTTP not being supported, but couldn’t find the limitation in the doc.
What am I missing?
1 Like
If you bring up the chrome dev tools and inspect the network traffic you can often see more detailed error messages.
Check that you can access the various files directly using the browser. If you can then it could be a CORS issues.
Likely is letting you know that it cannot find the manifest. Ensure that you have it publicly available and located at base/.well-known/ai-plugin.json
Is this an unverified plugin, or one you’re developing that hasn’t been submitted yet? If it’s the later choose the Develop your own plugin option.
4 Likes
@arevolutionofone WORKED !!
Thank you!
1 Like