Skip to content
New issue

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

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

Already on GitHub? # to your account

keep error message #1317

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

keep error message #1317

wants to merge 1 commit into from

Conversation

Gcaufy
Copy link

@Gcaufy Gcaufy commented Feb 11, 2025

  • I understand that this repository is auto-generated and my pull request may not be merged

OpenAI return error, but it does not show the error message.

{"code":20041,"message":"The model is not a VLM (Vision Language Model). Please use text-only prompts.","data":null}

I know this repo is auto-generated, but I don't konw how to fix it. So just keep this PR here.

Changes being requested

Additional context & links

@Gcaufy Gcaufy requested a review from a team as a code owner February 11, 2025 13:42
@@ -499,7 +499,7 @@ export abstract class APIClient {

const errText = await response.text().catch((e) => castToError(e).message);
const errJSON = safeJSON(errText);
const errMessage = errJSON ? undefined : errText;
const errMessage = errJSON ? errJSON.message : errText;

Choose a reason for hiding this comment

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

Suggestion: Can we consider using optional chaining here?
const errMessage = errJSON?.message || errText;

Also, should we consider adding unit tests to these changes if exist?

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants