/
talisman
/
gigachat-php-sdk
Обзор
Документация
Войти
/
talisman
/
gigachat-php-sdk
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/API/Requests/TokensCountRequest.php
24 строки
519 B
aegorov
add method embeddings
26 окт 2024, 23:22
26 окт 2024, 23:22
cd5a349
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace Talismanfr\GigaChat\API\Requests; use Talismanfr\GigaChat\Domain\VO\Model; final readonly class TokensCountRequest implements \JsonSerializable { public function __construct( public Model $model, public array $input ) { if (count($this->input) === 0) { throw new \InvalidArgumentException('input cannot be empty'); } } public function jsonSerialize(): mixed { return get_object_vars($this); } }