Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
openai-php
/
client
/
src
/
Responses
/
Embeddings
Location:
/home/zoteqbgb/public_html/vendor/openai-php/client/src/Responses/Embeddings
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: CreateResponse.php
<?php declare(strict_types=1); namespace OpenAI\Responses\Embeddings; use OpenAI\Contracts\ResponseContract; use OpenAI\Contracts\ResponseHasMetaInformationContract; use OpenAI\Responses\Concerns\ArrayAccessible; use OpenAI\Responses\Concerns\HasMetaInformation; use OpenAI\Responses\Meta\MetaInformation; use OpenAI\Testing\Responses\Concerns\Fakeable; /** * @implements ResponseContract<array{object: string, data: array<int, array{object: string, embedding: array<int, float>, index: int}>, usage: array{prompt_tokens: int, total_tokens: int}}> */ final class CreateResponse implements ResponseContract, ResponseHasMetaInformationContract { /** * @use ArrayAccessible<array{object: string, data: array<int, array{object: string, embedding: array<int, float>, index: int}>, usage: array{prompt_tokens: int, total_tokens: int}}> */ use ArrayAccessible; use Fakeable; use HasMetaInformation; /** * @param array<int, CreateResponseEmbedding> $embeddings */ private function __construct( public readonly string $object, public readonly array $embeddings, public readonly CreateResponseUsage $usage, private readonly MetaInformation $meta, ) {} /** * Acts as static factory, and returns a new Response instance. * * @param array{object: string, data: array<int, array{object: string, embedding: array<int, float>, index: int}>, usage: array{prompt_tokens: int, total_tokens: int}} $attributes */ public static function from(array $attributes, MetaInformation $meta): self { $embeddings = array_map(fn (array $result): CreateResponseEmbedding => CreateResponseEmbedding::from( $result ), $attributes['data']); return new self( $attributes['object'], $embeddings, CreateResponseUsage::from($attributes['usage']), $meta, ); } /** * {@inheritDoc} */ public function toArray(): array { return [ 'object' => $this->object, 'data' => array_map( static fn (CreateResponseEmbedding $result): array => $result->toArray(), $this->embeddings, ), 'usage' => $this->usage->toArray(), ]; } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
CreateResponse.php
2,319 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
CreateResponseEmbedding.php
950 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
CreateResponseUsage.php
771 bytes
0644
2025-03-05 19:52
âï¸
ðï¸
Rename
Chang
Apply