helper

The helper is only needed for one purpose: generating a session for stable operation of freeGPTFix. Currently, the helper is undergoing testing, which might cause GPT-3.5 to stop working again, but I'm trying to fix this with each subsequent patch.

To create a session (the session is immediately saved in the headers):

from freeGPTFix.lib.helper import session
from freeGPTFix.lib.headers import ROOM_HEADERS 

session().create()
print(ROOM_HEADERS)

# or
ses = session()
ses.create()
print(ses.data)

Last updated