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

Fix: Malformed error message formatting in makeMessage() function #1313

Open
wants to merge 15 commits into
base: master
Choose a base branch
from

Conversation

ac-mmi
Copy link

@ac-mmi ac-mmi commented Feb 9, 2025

This PR fixes an issue with the library where the message field in the error response from the API was not properly formatted as valid JSON. The makeMessage() function in the error.ts file was updated to ensure that error messages are formatted correctly, allowing developers to parse them without encountering JSON parsing issues.

Solution:

  1. The makeMessage() function in the error.ts file was updated to properly format the message string as valid JSON.
  2. The formatting now includes necessary escape characters and ensures the string follows valid JSON syntax.
  3. This ensures that the error message can be parsed by developers using JSON.parse() without any errors.

Fixes #1140

@ac-mmi ac-mmi requested a review from a team as a code owner February 9, 2025 11:18
@ac-mmi ac-mmi changed the title Fix: Malformed error message formatting in makeMessage() function Fix: Unclosed agentkeepalive connections and improve error message formatting Feb 9, 2025
@ac-mmi ac-mmi changed the title Fix: Unclosed agentkeepalive connections and improve error message formatting Fix: Malformed error message formatting in makeMessage() function Feb 9, 2025
src/error.ts Outdated
}

private static makeMessage(status: number | undefined, error: any, message: string | undefined) {
const msg =
error?.message ?
typeof error.message === 'string' ?
error.message
.replace(/'/g, '"') // Convert single quotes to double quotes
.replace(/\(\s*([^,]+),\s*([^,]+)\s*\)/g, '[$1, $2]') // Convert tuples to arrays (e.g., ('body', 'input') -> ["body", "input"])

Choose a reason for hiding this comment

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

Could we extract the error message formatting logic into a separate function for better readability and maintainability?

function formatErrorMessage(error: any): string {
    if (!error) return '';

    if (typeof error.message === 'string') {
        return error.message
            .replace(/'/g, '"') // Convert single quotes to double quotes
            .replace(/\(\s*([^()]+?)\s*\)/g, (_, content) => `[${content.split(/\s*,\s*/).join(', ')}]`);
            // Convert tuples of any length to arrays
    }

    return JSON.stringify(error.message ?? error);
}

Additionally, if we have existing tests, could we add test cases for the change?

Copy link
Author

Choose a reason for hiding this comment

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

i made a separate function for formatmessage inside the class

Copy link
Author

Choose a reason for hiding this comment

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

@nsaiprakash90 I couldn't find any tests specifically targeting the APIError class

@ac-mmi ac-mmi requested a review from nsaiprakash90 February 23, 2025 17:18
Copy link

@nsaiprakash90 nsaiprakash90 left a comment

Choose a reason for hiding this comment

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

This looks great, thanks!

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

Successfully merging this pull request may close these issues.

OpenAI request body validation error response is weird
2 participants