Giter Club home page Giter Club logo

[Bug]: local.ERROR: 'json_object' is not of type 'object' - 'response_format' {"exception":"[object] (OpenAI\Exceptions\ErrorException(code: 0): 'json_object' is not of type 'object' - 'response_format' at /app/vendor/openai-php/client/src/Transporters/HttpTransporter.php:131) about client HOT 7 CLOSED

aaftre avatar aaftre commented on June 12, 2024 1
[Bug]: local.ERROR: 'json_object' is not of type 'object' - 'response_format' {"exception":"[object] (OpenAI\Exceptions\ErrorException(code: 0): 'json_object' is not of type 'object' - 'response_format' at /app/vendor/openai-php/client/src/Transporters/HttpTransporter.php:131)

from client.

Comments (7)

horaceho avatar horaceho commented on June 12, 2024

Just FYI, json_object is not supported for gtp-4 model anyway:

Error code: 400 - {'error': {'message': "Invalid parameter: 'response_format' of type 'json_object' is not supported with this model.", 'type': 'invalid_request_error', 'param': 'response_format', 'code': None}}

    response = client.chat.completions.create(
        messages = [
            {
                "role": "user",
                "content": prompt,
            }
        ],
        model="gpt-4",
        response_format = {
            "type": "json_object",
        }
    )

from client.

horaceho avatar horaceho commented on June 12, 2024

For gtp-4 model, the following prompt produces a JSON output:

    response = client.chat.completions.create(
        messages = [
            {
                "role": "user",
                "content": "What are the first five letters in English? Answer in JSON format",
            }
        ],
        model="gpt-4",
    )
% python test.py
What are the first five letters in English? Answer in JSON format
{
"1": "A",
"2": "B",
"3": "C",
"4": "D",
"5": "E"
}

from client.

RHosono avatar RHosono commented on June 12, 2024

Just FYI, json_object is not supported for gtp-4 model anyway:

This is not true:

To prevent these errors and improve model performance, when calling gpt-4-turbo-preview or gpt-3.5-turbo-0125, you can set response_format to { "type": "json_object" } to enable JSON mode. When JSON mode is enabled, the model is constrained to only generate strings that parse into valid JSON object.
https://platform.openai.com/docs/guides/text-generation/json-mode

from client.

horaceho avatar horaceho commented on June 12, 2024

@RHosono Did you run the code with different model(s) or just quoted the doc? The error message was return from OpenAI API. The model used was model="gpt-4".

from client.

aaftre avatar aaftre commented on June 12, 2024

Just FYI, json_object is not supported for gtp-4 model anyway:

Error code: 400 - {'error': {'message': "Invalid parameter: 'response_format' of type 'json_object' is not supported with this model.", 'type': 'invalid_request_error', 'param': 'response_format', 'code': None}}

    response = client.chat.completions.create(
        messages = [
            {
                "role": "user",
                "content": prompt,
            }
        ],
        model="gpt-4",
        response_format = {
            "type": "json_object",
        }
    )

not sure why gpt4 is being mentioned, the model used in the original post was gpt-3.5-turbo-0125. this is the exact model used in openai documentation: https://platform.openai.com/docs/guides/text-generation/json-mode

this works just by using a guzzle http client:

$response = $client->request('POST', 'https://api.openai.com/v1/chat/completions', [
     'headers' => [
         'Content-Type' => 'application/json',
         'Authorization' => 'Bearer ' . getenv('OPENAI_API_KEY')
     ],
     'json' => [
         "messages" => [
             ["role" => "system", "content" => $system_content ],
             ["role" => "user", "content" => $address_json ]
         ],
         "model" => "gpt-3.5-turbo",
         "response_format" => [ "type" => "json_object" ]
     ]
 ]);

from client.

RHosono avatar RHosono commented on June 12, 2024

@RHosono Did you run the code with different model(s) or just quoted the doc? The error message was return from OpenAI API. The model used was model="gpt-4".

So you mean the very old gpt-4 model, yes, that is correct. But both the new gpt-4-turbo and the older gpt-4-turbo-preview support it. I do not think anyone is using the more expensive and older gpt-4 modal. I was just making a general point, not about the code.

Because you said:

"json_object is not supported for gtp-4 model anyway:"

from client.

gehrisandro avatar gehrisandro commented on June 12, 2024

Hi @aaftre

This does not look like an error related to the package.

If you do not agree, feel free to reopen the issue.

from client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.