> For the complete documentation index, see [llms.txt](https://red-3.gitbook.io/freegptfix/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://red-3.gitbook.io/freegptfix/getting-started/quickstart.md).

# 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 %}
