Is there any extension or tool or trick that makes ChatGPT stop stopping in long responses?

  • Thread starter Thread starter Deleted member 1013995
  • Start date Start date
D

Deleted member 1013995

Guest
Is there any extension or tool or trick that makes ChatGPT stop stopping in long responses?

I use it to generate non-english articles, I have chatgpt pro, but it stops every 7-8 lines
 
Have you tried the api? you can programmatically check if the response is short. If so, you can add another command like "continue" or "expand"...
 
Have you tried the api? you can programmatically check if the response is short. If so, you can add another command like "continue" or "expand"...
I am not a coder. is there maybe a userscript or an extension that does that automatically?
 
Yes, you can try this simple trick by giving "continue" to "continue an article" instructions during your long chatGPT response search.
 
Yes, you can try this simple trick by giving "continue" to "continue an article" instructions during your long chatGPT response search.
I don't understand. You mean to just type "continue"? I know that typing any letter makes chatgpt to continue, but I would rather have a more solid solution
 
Have you tried the api? you can programmatically check if the response is short. If so, you can add another command like "continue" or "expand"...
it still don't work if the response exceeds 4000 tokens, as you also need to pass the previous response to new response. If the response is 4500, it would return 4000 tokens, but you can't get the remaining 500 tokens as the max tokens per conversation is 4000 tokens. Correct me if I am wrong.
 
Use their API with a simple script or tools that are already powered with their api. Should cost you 0.02 usd per 750 words and no monthly fee.

Thats the only way to get to 2000-3000 words

-----

@jadecoder You are right. One has to do add a reset in the code to start from where it left after it cuts in 4000
 
Is there any extension or tool or trick that makes ChatGPT stop stopping in long responses?

I use it to generate non-english articles, I have chatgpt pro, but it stops every 7-8 lines
For this you need a simple script or api.
Actually you can ask chatgpt to do this too to make a desktop tool for you.

First ask it - create a html, css and js file that works with open ai api and allows chatgpt to give responses of more than 500 words.
Second time - just ask it to add a expand or a continue button on page with a js function that will instruction it to keep writing. This way all you have to do is just press and button.
 
Use their API with a simple script or tools that are already powered with their api. Should cost you 0.02 usd per 750 words and no monthly fee.

Thats the only way to get to 2000-3000 words

-----

@jadecoder You are right. One has to do add a reset in the code to start from where it left after it cuts in 4000
Do you have any scripts in mind that I can get somewhere?
 
but it stops every 7-8 lines
If it stops after 7-8 lines that means either AI doesn't have more information regarding the topic or someway you are consuming more tokens than the limit.
It's unlikely that you're eating up the tokens maybe there's a issue with the prompt or there's not much information with chatGPT regarding the topic.
Try running the same prompt for English output and see if it still gives you limited response.
If not then there's some issue with processing your request in the non-English language.

In case it gives better response for English you can ask it to output the response in English and then ask it to translate in your preferred non-English language.
 
If it stops after 7-8 lines that means either AI doesn't have more information regarding the topic or someway you are consuming more tokens than the limit.
It's unlikely that you're eating up the tokens maybe there's a issue with the prompt or there's not much information with chatGPT regarding the topic.
Try running the same prompt for English output and see if it still gives you limited response.
If not then there's some issue with processing your request in the non-English language.

In case it gives better response for English you can ask it to output the response in English and then ask it to translate in your preferred non-English language.
In English it does not stop easily, maybe at 50 lines it will stop. The issue is that I want to do articles in non-English.
 
In English it does not stop easily, maybe at 50 lines it will stop. The issue is that I want to do articles in non-English.
Then definitely it seems to me that the issue is either chatGPT doesn't have enough info regarding the topic or there's an issue with prompt or maybe chatGPT is having issue processing your prompt in non-English language.

You can try asking it to 1st give the response in English and then ask it to translate.
Or
Break your prompt into sections and then ask it to give response to each section.
Or
Give some info in the input prompt maybe a short article or an article structure with headings and subheadings to better understand the topic and your requirement.

You can use the detailed seo extension it's free: https://detailed.com/extension/

With this extension you can goto any webpage and extract the article structure.
So you can goto any existing webpage and copy it's structure put it in your prompt and see if you get a better response.
 
I don't understand. You mean to just type "continue"? I know that typing any letter makes chatgpt to continue, but I would rather have a more solid solution
you just need a more in depth prompt
 
Is there any extension or tool or trick that makes ChatGPT stop stopping in long responses?

I use it to generate non-english articles, I have chatgpt pro, but it stops every 7-8 lines

You have no control over that. Just say "continue".
 
I also had this same issue. And I always just used the word "continue" or "continue from where you left off".
 
it still don't work if the response exceeds 4000 tokens, as you also need to pass the previous response to new response. If the response is 4500, it would return 4000 tokens, but you can't get the remaining 500 tokens as the max tokens per conversation is 4000 tokens. Correct me if I am wrong.
Yes I think that's how it works.
 
Then definitely it seems to me that the issue is either chatGPT doesn't have enough info regarding the topic or there's an issue with prompt or maybe chatGPT is having issue processing your prompt in non-English language.

You can try asking it to 1st give the response in English and then ask it to translate.
Or
Break your prompt into sections and then ask it to give response to each section.
Or
Give some info in the input prompt maybe a short article or an article structure with headings and subheadings to better understand the topic and your requirement.

You can use the detailed seo extension it's free: https://detailed.com/extension/

With this extension you can goto any webpage and extract the article structure.
So you can goto any existing webpage and copy it's structure put it in your prompt and see if you get a better response.
ChatGPT seems to be more proficient in generating English output.
 
Back
Top