wppaste
WordPress

AbstractOpenAiCompatibleTextGenerationModel::getMessagePartContentData( WordPress\AiClient\Messages\DTO\MessagePart $part ): WordPress\AiClient\Providers\OpenAiCompatibleImplementation\?array<string,

Since
0.1.0
Source
wp-includes/php-ai-client/src/Providers/OpenAiCompatibleImplementation/AbstractOpenAiCompatibleTextGenerationModel.php:227
Returns the OpenAI API specific content data for a message part.

Compatibility

WordPress
since 0.1.0
PHP
7.4–8.6-dev
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in 2 of the 5 tracked releases, added in 0.1.0, and compiles on PHP 7.4 through 8.6-dev.

Parameters

$partWordPress\AiClient\Messages\DTO\MessagePart
The message part to get the data for.

Return value

WordPress\AiClient\Providers\OpenAiCompatibleImplementation\?array<string,
mixed> The data for the message content part, or null if not applicable.

Performance profile

How much work a call to AbstractOpenAiCompatibleTextGenerationModel::getMessagePartContentData() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.

Cost class
Trivial

Touches nothing outside its own arguments.

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
13–34

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 100.

Plugin surface
None

Nothing here hands control to plugin code.

Called by
0

Nothing in core calls this; the cost is only what you spend yourself.

What one call costs · 11 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost AbstractOpenAiCompatibleTextGenerationModel::getMessagePartContentData() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
->isText() && ->isThought()13->getType(), ->isText(), ->getChannel(), ->isThought()
!->isText() && !->isFile() && ->isFunctionCall()14->getType(), ->isText(), ->isFile(), ->isFunctionCall()
->isText() && !->isThought()17->getType(), ->isText(), ->getChannel(), ->isThought(), ->getText()
!->isText() && ->isFile()18->getType(), ->isText(), ->isFile(), ->getFile(), text()
!->isText() && !->isFile() && !->isFunctionCall() && ->isFunctionResponse()20->getType(), ->isText(), ->isFile(), ->isFunctionCall(), ->isFunctionResponse(), input_audio()
!->isText() && !->isFile() && !->isFunctionCall() && !->isFunctionResponse()23->getType(), ->isText(), ->isFile(), ->isFunctionCall(), ->isFunctionResponse(), url()
!->isText() && ->isFile() && !->isRemote() && ->isImage()26->getType(), ->isText(), ->isFile(), ->getFile(), ->isRemote(), ->isImage(), ->getDataUri()
!->isText() && ->isFile() && ->isRemote() && ->isImage()26->getType(), ->isText(), ->isFile(), ->getFile(), ->isRemote(), ->isImage(), ->getUrl()
!->isText() && ->isFile() && ->isRemote() && !->isImage()29->getType(), ->isText(), ->isFile(), ->getFile(), ->isRemote(), ->isImage(), ->getMimeType(), url()
!->isText() && ->isFile() && !->isRemote() && !->isImage() && !->isAudio()32->getType(), ->isText(), ->isFile(), ->getFile(), ->isRemote(), ->isImage(), ->isAudio(), ->getMimeType(), data()
!->isText() && ->isFile() && !->isRemote() && !->isImage() && ->isAudio()34->getType(), ->isText(), ->isFile(), ->getFile(), ->isRemote(), ->isImage(), ->isAudio(), ->getBase64Data(), ->getMimeTypeObject(), ->toExtension()

Across PHP versions

PHPCompiledExecutedBranchesNotes
8.6-dev10013–3410
8.510013–3410
8.410013–34103 fewer instructions than PHP 8.3
8.310313–3410
8.210313–3410
8.110313–3410
7.410313–3410

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Uses · 2

  • \WordPress\AiClient\Common\Exception\RuntimeException::__construct()
  • \WordPress\AiClient\Common\Exception\InvalidArgumentException::__construct()

Source code

    protected function getMessagePartContentData(MessagePart $part): ?array    {        $type = $part->getType();        if ($type->isText()) {            /*             * The OpenAI Chat Completions API spec does not support annotating thought parts as input,             * so we instead skip them.             */            if ($part->getChannel()->isThought()) {                return null;            }            return ['type' => 'text', 'text' => $part->getText()];        }        if ($type->isFile()) {            $file = $part->getFile();            if (!$file) {                // This should be impossible due to class internals, but still needs to be checked.                throw new RuntimeException('The file typed message part must contain a file.');            }            if ($file->isRemote()) {                if ($file->isImage()) {                    return ['type' => 'image_url', 'image_url' => ['url' => $file->getUrl()]];                }                throw new InvalidArgumentException(sprintf('Unsupported MIME type "%s" for remote file message part.', $file->getMimeType()));            }            // Else, it is an inline file.            if ($file->isImage()) {                return ['type' => 'image_url', 'image_url' => ['url' => $file->getDataUri()]];            }            if ($file->isAudio()) {                return ['type' => 'input_audio', 'input_audio' => ['data' => $file->getBase64Data(), 'format' => $file->getMimeTypeObject()->toExtension()]];            }            throw new InvalidArgumentException(sprintf('Unsupported MIME type "%s" for inline file message part.', $file->getMimeType()));        }        if ($type->isFunctionCall()) {            // Skip, as this is separately included. See `getMessagePartToolCallData()`.            return null;        }        if ($type->isFunctionResponse()) {            // Special case: Function response.            throw new InvalidArgumentException('The API only allows a single function response, as the only content of the message.');        }        throw new InvalidArgumentException(sprintf('Unsupported message part type "%s".', $type));    }

Changelog

Introduced in 0.1.0. Unchanged from 7.0.4 through 7.1.0.

  1. 7.0.4
  2. 7.1.0

Signature, return type and hooks compared across 2 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 7.1.0 tag, from src/wp-includes/php-ai-client/src/Providers/OpenAiCompatibleImplementation/AbstractOpenAiCompatibleTextGenerationModel.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.