Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
openai-php
/
client
/
src
/
Responses
/
Moderations
Location:
/home/zoteqbgb/public_html/vendor/openai-php/client/src/Responses/Moderations
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: CreateResponseCategory.php
<?php declare(strict_types=1); namespace OpenAI\Responses\Moderations; use OpenAI\Enums\Moderations\Category; final class CreateResponseCategory { private function __construct( public readonly Category $category, public readonly bool $violated, public readonly float $score, ) {} /** * @param array{category: string, violated: bool, score: float} $attributes */ public static function from(array $attributes): self { return new self( Category::from($attributes['category']), $attributes['violated'], $attributes['score'], ); } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
CreateResponse.php
2,202 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
CreateResponseCategory.php
646 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
CreateResponseResult.php
1,867 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
Chang
Apply