Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
openai-php
/
client
/
src
/
Testing
/
Responses
/
Concerns
Location:
/home/zoteqbgb/public_html/vendor/openai-php/client/src/Testing/Responses/Concerns
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: Fakeable.php
<?php declare(strict_types=1); namespace OpenAI\Testing\Responses\Concerns; use OpenAI\Responses\Meta\MetaInformation; trait Fakeable { /** * @param array<string, mixed> $override */ public static function fake(array $override = [], ?MetaInformation $meta = null): static { $class = str_replace('Responses\\', 'Testing\\Responses\\Fixtures\\', static::class).'Fixture'; return static::from( self::buildAttributes($class::ATTRIBUTES, $override), $meta ?? self::fakeResponseMetaInformation(), ); } /** * @return mixed[] */ private static function buildAttributes(array $original, array $override): array { $new = []; foreach ($original as $key => $entry) { $new[$key] = is_array($entry) ? self::buildAttributes($entry, $override[$key] ?? []) : $override[$key] ?? $entry; unset($override[$key]); } // we are going to append all remaining overrides foreach ($override as $key => $value) { $new[$key] = $value; } return $new; } public static function fakeResponseMetaInformation(): MetaInformation { return MetaInformation::from([ 'openai-model' => ['gpt-3.5-turbo-instruct'], 'openai-organization' => ['org-1234'], 'openai-processing-ms' => ['410'], 'openai-version' => ['2020-10-01'], 'x-ratelimit-limit-requests' => ['3000'], 'x-ratelimit-limit-tokens' => ['250000'], 'x-ratelimit-remaining-requests' => ['2999'], 'x-ratelimit-remaining-tokens' => ['249989'], 'x-ratelimit-reset-requests' => ['20ms'], 'x-ratelimit-reset-tokens' => ['2ms'], 'x-request-id' => ['3813fa4fa3f17bdf0d7654f0f49ebab4'], ]); } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Fakeable.php
1,899 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
FakeableForStreamedResponse.php
848 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
Chang
Apply