* $aiplatformService = new Google\Service\Aiplatform(...); * $models = $aiplatformService->publishers_models; * */ class PublishersModels extends \Google\Service\Resource { /** * Return a list of tokens based on the input text. (models.computeTokens) * * @param string $endpoint Required. The name of the Endpoint requested to get * lists of tokens and token ids. * @param GoogleCloudAiplatformV1ComputeTokensRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudAiplatformV1ComputeTokensResponse * @throws \Google\Service\Exception */ public function computeTokens($endpoint, GoogleCloudAiplatformV1ComputeTokensRequest $postBody, $optParams = []) { $params = ['endpoint' => $endpoint, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('computeTokens', [$params], GoogleCloudAiplatformV1ComputeTokensResponse::class); } /** * Perform a token counting. (models.countTokens) * * @param string $endpoint Required. The name of the Endpoint requested to * perform token counting. Format: * `projects/{project}/locations/{location}/endpoints/{endpoint}` * @param GoogleCloudAiplatformV1CountTokensRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudAiplatformV1CountTokensResponse * @throws \Google\Service\Exception */ public function countTokens($endpoint, GoogleCloudAiplatformV1CountTokensRequest $postBody, $optParams = []) { $params = ['endpoint' => $endpoint, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('countTokens', [$params], GoogleCloudAiplatformV1CountTokensResponse::class); } /** * Generate content with multimodal inputs. (models.generateContent) * * @param string $model Required. The fully qualified name of the publisher * model or tuned model endpoint to use. Publisher model format: * `projects/{project}/locations/{location}/publishers/models` Tuned model * endpoint format: * `projects/{project}/locations/{location}/endpoints/{endpoint}` * @param GoogleCloudAiplatformV1GenerateContentRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudAiplatformV1GenerateContentResponse * @throws \Google\Service\Exception */ public function generateContent($model, GoogleCloudAiplatformV1GenerateContentRequest $postBody, $optParams = []) { $params = ['model' => $model, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('generateContent', [$params], GoogleCloudAiplatformV1GenerateContentResponse::class); } /** * Gets a Model Garden publisher model. (models.get) * * @param string $name Required. The name of the PublisherModel resource. * Format: `publishers/{publisher}/models/{publisher_model}` * @param array $optParams Optional parameters. * * @opt_param string huggingFaceToken Optional. Token used to access Hugging * Face gated models. * @opt_param bool isHuggingFaceModel Optional. Boolean indicates whether the * requested model is a Hugging Face model. * @opt_param string languageCode Optional. The IETF BCP-47 language code * representing the language in which the publisher model's text information * should be written in. * @opt_param string view Optional. PublisherModel view specifying which fields * to read. * @return GoogleCloudAiplatformV1PublisherModel * @throws \Google\Service\Exception */ public function get($name, $optParams = []) { $params = ['name' => $name]; $params = array_merge($params, $optParams); return $this->call('get', [$params], GoogleCloudAiplatformV1PublisherModel::class); } /** * Generate content with multimodal inputs with streaming support. * (models.streamGenerateContent) * * @param string $model Required. The fully qualified name of the publisher * model or tuned model endpoint to use. Publisher model format: * `projects/{project}/locations/{location}/publishers/models` Tuned model * endpoint format: * `projects/{project}/locations/{location}/endpoints/{endpoint}` * @param GoogleCloudAiplatformV1GenerateContentRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudAiplatformV1GenerateContentResponse * @throws \Google\Service\Exception */ public function streamGenerateContent($model, GoogleCloudAiplatformV1GenerateContentRequest $postBody, $optParams = []) { $params = ['model' => $model, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('streamGenerateContent', [$params], GoogleCloudAiplatformV1GenerateContentResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PublishersModels::class, 'Google_Service_Aiplatform_Resource_PublishersModels');