Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Add faq for "Free Trial" openai accounts #679

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/docs/09-faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,16 @@ If you're already authenticated with the `gh` CLI, you can use its token by runn
```bash
export GITHUB_AUTH_TOKEN="$(gh auth token)"
```

### I'm not able to get GPTScript to work with my OpenAI account which is in "Free Trial"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ive added some suggestions to the text targeted at answering this exact question, but really there are sort of 2 scenarios that could lead to the '404 model not found' error. It might be worth splitting this into two sections, one that directly addresses the question of what to do if you get that error, and the other that addresses the rate limit error.

I think people will more frequently be asking questions about those errors they see directly from gptscript, where for now this is question is working backwards from an exact answer.


When executing GPTScript with OpenAI API key of an account in "Free Trial", user will be presented with the following error message:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
When executing GPTScript with OpenAI API key of an account in "Free Trial", user will be presented with the following error message:
When running GPTScript against an OpenAI account that is in "Free Trial" mode, you will be presented with the following error message:

```
status code: 404, message: The model `gpt-4o` does not exist or you do not have access to it
```
By default, GPTScript uses `gpt-4o` model which is not available for users in "Free Trial" and this is expected behavior.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
By default, GPTScript uses `gpt-4o` model which is not available for users in "Free Trial" and this is expected behavior.
GPTScript uses the `gpt-4o` model by default, which is not available for users in "Free Trial."


User can choose to use other supported models like `gpt-4o-mini`,`gpt-3.5-turbo` by using `--default-model <Model Name>` when executing GPTscripts. But in case of "Free Trial" account with no credits, GPTScript execution will fail with following quota exceeded error messgae which is also the expected behavior since there are no credits available.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
User can choose to use other supported models like `gpt-4o-mini`,`gpt-3.5-turbo` by using `--default-model <Model Name>` when executing GPTscripts. But in case of "Free Trial" account with no credits, GPTScript execution will fail with following quota exceeded error messgae which is also the expected behavior since there are no credits available.
You can choose to use other supported models like `gpt-4o-mini` or `gpt-3.5-turbo` by using `--default-model <Model Name>` when executing scripts. If there are no available credits in the account, execution will fail with following quota exceeded error message until you add credits to your account.

```
error, status code: 429, message: You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.
```