Chatbots can significantly improve how we communicate and interact with technology. Explore the potential of GPT-3 and other language-generation tools.
You will see how to configure a standalone mule runtime server on a local server. This is typically used when an organization wants to secure its entire data.
All APIs developed using Mule must be built with a health check endpoint. This template will help you maintain a uniform structure across all the APIs and their layers.
Mulesoft Anypoint Platform supports multi-factor authentication for your organizations’ Users. You can enable or disable MFA for individual users or all users.
This usually happens when you have exceeded the rate limit set by the server. This usually happens when you make too many requests within a certain period of time. Some servers may limit the number of requests you can make in an hour or a day.
If this issue still persist, follow the below steps in order to get successful response.
URL : https://api.openai.com/v1/completions
Header parameter :
Authorization:Bearer your API KEY
Content-Type:application/json
Request Body:
{
"model": "text-davinci-003",
"prompt": "Create a list of 5 advantages of Mulesoft:",
Looks like authentication failed. Check apikey and how do you pass through header. if you could share postman collection or request payload will assist further
I would plan to write on setup and use of OpenID Connect between Mulesoft Anypoint and Auth0 soon.For client ID registration please see my other article that may help.
Comments
Jan 20, 2023 · Mukesh Thakur
Hi Roushan K,
This usually happens when you have exceeded the rate limit set by the server. This usually happens when you make too many requests within a certain period of time. Some servers may limit the number of requests you can make in an hour or a day.
If this issue still persist, follow the below steps in order to get successful response.
URL : https://api.openai.com/v1/completions
Header parameter :
Authorization:Bearer your API KEY
Content-Type:application/json
Request Body:
{
"model": "text-davinci-003",
"prompt": "Create a list of 5 advantages of Mulesoft:",
"max_tokens": 150
}
Requested Method : POST
Hope it will help
Jan 18, 2023 · Mukesh Thakur
@Roushan K
import below collection in postman and modify OPENAI_API_KEY and prompt as per your needs.
curl https://api.openai.com/v1/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "text-davinci-003",
"prompt": "",
"temperature": 0.7,
"max_tokens": 256,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0
}'
Hope it will help
Jan 17, 2023 · Mukesh Thakur
Looks like authentication failed. Check apikey and how do you pass through header. if you could share postman collection or request payload will assist further
Aug 28, 2020 · Mukesh Thakur
When you create mule application. inside resource folder you have create properties or yaml file and keep static details.
Regards,
Mukesh
Jul 03, 2020 · Mukesh Thakur
Thanks Roger,
I would plan to write on setup and use of OpenID Connect between Mulesoft Anypoint and Auth0 soon.For client ID registration please see my other article that may help.