chatgpt-google-extension
chatgpt-google-extension copied to clipboard
If the chatgpt gives an answer too long, then the answer will suddenly disappear.
Can you give me an example?
You can search "How do I make an HTTP request in Javascript?" in the google search bar. and the right side chatgpt answer will continue to show, but it will disappear in a certain probability
Thanks
BTW, I'm using the latest chrome version
I think this is because of the token limitations per request?
+1 ,test case : write a https server on dart
use :continue
I can't get the cloned repo to install into my browser but I would try adding this into index.mjs
container.style.overflow = 'auto'
and maybe even
container.style.maxHeight = '400px' (doesn't have to be 400px, just an example)
If your request is written in Russian and requires a lengthy response, ChatGPT will start to write the response and after some time it may give Failed to load response from ChatGPT and at the same time all that was written before will disappear. It is necessary to add to the extension the ability to remember the part that ChatGPT managed to give, so as not to lose it.
@eddir I found that already fixed in the latest version, please wait for release
I still have "network error" in chatgpt Chrome 108.0.5359.99
@asel4ik please open a new issue
The OpenAI engine has a limit of 4096 tokens for the question and response combined. In ChatGPT, the site keeps the whole chat and sends it back and forth to the AI. When it reaches the 4000 tokens then it gets a network error. Refresh the page and it should be solved. When you use the OpenAI Playground (paid) then you have control over the content of the chat and you can reduce the amount of text. Just edit the whole chat to get the answers you're looking for. I use OpenAI with Notepad++ and copy the chat to Notepad++ and just keep the parts that I want to focus further on. This allows me to get very long discussions and steer it more clearly in the direction I want.
@WimTenBrink Now ChatGPT have conversation history feature, is each conversation limited to 4096 tokens? Like if you reach the limit, you have to create a new chat?