It seems it is not released yet, do you have an ETA ?
Here is a quick help for a fix :
- const response = await fetch('/wp-json/ai-content-helper/openai/v1/generated-content', {
+ const apiEndpoint = wpApiSettings.root + 'ai-content-helper/openai/v1/generated-content';
+ const response = await fetch(apiEndpoint, {
Of course, you should do the same everywhere the api is called.
Thank you very much !
I’ll wait for next release then !