* $aiplatformService = new Google\Service\Aiplatform(...); * $endpoints = $aiplatformService->endpoints; * */ class Endpoints extends \Google\Service\Resource { /** * Return a list of tokens based on the input text. (endpoints.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. (endpoints.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. (endpoints.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); } /** * Generate content with multimodal inputs with streaming support. * (endpoints.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(Endpoints::class, 'Google_Service_Aiplatform_Resource_Endpoints');