xtekky / chatgpt-clone

ChatGPT interface with better UI
https://g4f.ai
GNU General Public License v3.0
3.43k stars 1.03k forks source link

chat.g4f.ai nor selfhosted are not working atm #110

Open TheGroxEmpire opened 1 year ago

TheGroxEmpire commented 1 year ago

The chat.g4f.ai version are stuck without response.

image

Same with the selfhosted version. This is the output log:

image

kak7NotSupported commented 12 months ago

Hi, I had the same issue. You can try to read the error that comes in the response:

In backend.py line 81

def stream():
    for chunk in gpt_resp.iter_lines():
        print(type(chunk))    # <------
        print(chunk)     # <------
        try:
        . . .

In my case I've got the message:

image