Unable to get full information through ChatGPT

Hi Sarveswara,

Could you please help me, i am unable to see retrieve full information through ChatGPT(Content is not giving fully).

Did any one getting full data while requested ChatGPT

Ex: My Question is HIPPA Stands for?

ChatGPT giving incomplete information see “the Health Insurance Portability and Accountability Act of 1996. This law sets the standard”

After That no information, kindly me know. how to do.

Below is my request Json model and prompt.

curl https://api.openai.com/v1/completions
-H ‘Content-Type: application/json’
-H ‘Authorization: Bearer YOUR_API_KEY’
-d ‘{
“model”: “text-davinci-003”,
“prompt”: “Say this is a test”,
“max_tokens”: 7,
“temperature”: 0
}’

Regards,
Sarveswara Reddy . p

Increase the max_tokens to 1000.

Thank you so much, After change to 1000
curl https://api.openai.com/v1/completions
-H ‘Content-Type: application/json’
-H ‘Authorization: Bearer YOUR_API_KEY’
-d ‘{
“model”: “text-davinci-003”,
“prompt”: “Say this is a test”,
“max_tokens”: 1000,
“temperature”: 0
}’

Still incomplete information displaying “The Health Insurance Portability and Accountability Act (HIPAA) of” After “of” nothing. is there any limitation in UiPath Side i mean to say HTTP Request Side?

I didn’t hear of a such limitation in HTTP Request. Try to write the response to a txt file and then read it.

What are the results of the same Rest API call in the Node.js project directory? Double-check the Open AI documentation.

@sarveswarap Did your issue get resolved. If yes , do let me know , I am also in the same boat.

Hello, for me it worked to increase the max_tokens limit with assign.
image

But then you need to increase the timeout as well otherwise it will throw a timeout error.

image