docs: Add faq for "Free Trial" openai accounts#679
Open
sangee2004 wants to merge 1 commit intogptscript-ai:mainfrom
Open
docs: Add faq for "Free Trial" openai accounts#679sangee2004 wants to merge 1 commit intogptscript-ai:mainfrom
sangee2004 wants to merge 1 commit intogptscript-ai:mainfrom
Conversation
drpebcak
requested changes
Jul 31, 2024
|
|
||
| ### I'm not able to get GPTScript to work with my OpenAI account which is in "Free Trial" | ||
|
|
||
| When executing GPTScript with OpenAI API key of an account in "Free Trial", user will be presented with the following error message: |
Member
There was a problem hiding this comment.
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. |
Member
There was a problem hiding this comment.
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." |
| ``` | ||
| By default, GPTScript uses `gpt-4o` model which is not available for users in "Free Trial" and this is expected behavior. | ||
|
|
||
| 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. |
Member
There was a problem hiding this comment.
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. | |
| 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" |
Member
There was a problem hiding this comment.
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add faq for "Free Trial" openai accounts