Quickstart

First, you need to install our library via:

pip install freeGPTFix

After a successful installation, you can quickly start working with freeGPTFix via:

from freeGPTFix import Client
prompt = input("> ")
resp = Client.create_completion("gpt3_5", prompt)
print(resp)

Note that you should write gpt3_5 instead of gpt3.5!

Last updated