# Quickstart

First, you need to install our library via:

```bash
pip install freeGPTFix
```

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

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

{% hint style="info" %}
Note that you should write `gpt3_5` instead of `gpt3.5`!
{% endhint %}
