You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
while True:
prompt = input("👦: ")
try:
resp = Client.create_completion("gpt4", prompt)
print(f"🤖: {resp}")
except Exception as e:
print(f"🤖: {e}")
in the above code i am using the gpt4 it is generating the output as "🤖: Unable to fetch the response."
The text was updated successfully, but these errors were encountered:
How often did you use the AI? Because the output 'Unable to fetch response' means that something is wrong with your token, as it is not present in resp.text.
from freeGPT import Client
while True:
prompt = input("👦: ")
try:
resp = Client.create_completion("gpt4", prompt)
print(f"🤖: {resp}")
except Exception as e:
print(f"🤖: {e}")
in the above code i am using the gpt4 it is generating the output as "🤖: Unable to fetch the response."
The text was updated successfully, but these errors were encountered: