chatgpt-clone icon indicating copy to clipboard operation
chatgpt-clone copied to clipboard

chat.g4f.ai nor selfhosted are not working atm

Open TheGroxEmpire opened this issue 1 year ago • 1 comments

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

image

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

image

TheGroxEmpire avatar Jun 18 '23 12:06 TheGroxEmpire

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

kak7NotSupported avatar Jul 28 '23 11:07 kak7NotSupported