Connor Tumbleson

Results 630 comments of Connor Tumbleson

Sorry, we don't replicate at the moment. Are you using the new arm runners by chance? Output seems different than I'm used to. I can investigate deeper in a few...

Can I have name of your `runs-on:_` ? I'm trying to figure out if this is a the new ARM runners that are not building Docker based actions in the...

Okay, I'd say this is something on your side then. Let me know what you learn. I have no context to the setup of your self-hosted runner.

Are you saying our existing Images Create endpoint with the new model `gpt-image-1` doesn't work? ```php $response = $client->images()->create([ 'model' => 'dall-e-3', 'prompt' => 'A cute baby sea otter', 'n'...

Okay, I haven't messed with these endpoints yet. Let me finish Response API and I'll take some code samples here and dig into it.

Okay, so let me recap to see if I'm following. 1. If you don't format the image in a specific format (resource?) - it crashes with an odd issue (`response_format`)....

Okay I started with this [sample](https://github.com/iBotPeaches/openai-php-laravel-test/blob/master/app/Console/Commands/ImageTest.php). ```php $response = OpenAI::images()->create([ 'model' => 'gpt-image-1', 'prompt' => 'A cute baby sea otter', 'size' => '1024x1024', ]); ``` and it error-ed out. ```json...

Confirmed my sample works with a verified org. * `images/generations` - https://github.com/openai-php/client/blob/main/src/Resources/Images.php#L27 * `image/edits` - https://github.com/openai-php/client/blob/main/src/Resources/Images.php#L44 * `image/variations` - https://github.com/openai-php/client/blob/main/src/Resources/Images.php#L61 So I'm confused what we are missing.

No worries! I believe we've confirmed every thing in this thread is already supported. We had some issues with verified orgs, wrong parameters and wrong format for images - but...