PromptBuilder::asOutputMimeType( string $mimeType ): self

In this article

Sets the output MIME type.

Parameters

$mimeTypestringrequired
The MIME type.

Return

self

Source

public function asOutputMimeType(string $mimeType): self
{
    $this->modelConfig->setOutputMimeType($mimeType);
    return $this;
}

Changelog

VersionDescription
0.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.