[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Endpoints.php
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\Aiplatform\Resource; use Google\Service\Aiplatform\GoogleCloudAiplatformV1ComputeTokensRequest; use Google\Service\Aiplatform\GoogleCloudAiplatformV1ComputeTokensResponse; use Google\Service\Aiplatform\GoogleCloudAiplatformV1CountTokensRequest; use Google\Service\Aiplatform\GoogleCloudAiplatformV1CountTokensResponse; use Google\Service\Aiplatform\GoogleCloudAiplatformV1FetchPredictOperationRequest; use Google\Service\Aiplatform\GoogleCloudAiplatformV1GenerateContentRequest; use Google\Service\Aiplatform\GoogleCloudAiplatformV1GenerateContentResponse; use Google\Service\Aiplatform\GoogleCloudAiplatformV1PredictLongRunningRequest; use Google\Service\Aiplatform\GoogleCloudAiplatformV1PredictRequest; use Google\Service\Aiplatform\GoogleCloudAiplatformV1PredictResponse; use Google\Service\Aiplatform\GoogleLongrunningOperation; /** * The "endpoints" collection of methods. * Typical usage is: * <code> * $aiplatformService = new Google\Service\Aiplatform(...); * $endpoints = $aiplatformService->endpoints; * </code> */ 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); } /** * Fetch an asynchronous online prediction operation. * (endpoints.fetchPredictOperation) * * @param string $endpoint Required. The name of the Endpoint requested to serve * the prediction. Format: * `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{ * project}/locations/{location}/publishers/{publisher}/models/{model}` * @param GoogleCloudAiplatformV1FetchPredictOperationRequest $postBody * @param array $optParams Optional parameters. * @return GoogleLongrunningOperation * @throws \Google\Service\Exception */ public function fetchPredictOperation($endpoint, GoogleCloudAiplatformV1FetchPredictOperationRequest $postBody, $optParams = []) { $params = ['endpoint' => $endpoint, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('fetchPredictOperation', [$params], GoogleLongrunningOperation::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); } /** * Perform an online prediction. (endpoints.predict) * * @param string $endpoint Required. The name of the Endpoint requested to serve * the prediction. Format: * `projects/{project}/locations/{location}/endpoints/{endpoint}` * @param GoogleCloudAiplatformV1PredictRequest $postBody * @param array $optParams Optional parameters. * @return GoogleCloudAiplatformV1PredictResponse * @throws \Google\Service\Exception */ public function predict($endpoint, GoogleCloudAiplatformV1PredictRequest $postBody, $optParams = []) { $params = ['endpoint' => $endpoint, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('predict', [$params], GoogleCloudAiplatformV1PredictResponse::class); } /** * (endpoints.predictLongRunning) * * @param string $endpoint Required. The name of the Endpoint requested to serve * the prediction. Format: * `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{ * project}/locations/{location}/publishers/{publisher}/models/{model}` * @param GoogleCloudAiplatformV1PredictLongRunningRequest $postBody * @param array $optParams Optional parameters. * @return GoogleLongrunningOperation * @throws \Google\Service\Exception */ public function predictLongRunning($endpoint, GoogleCloudAiplatformV1PredictLongRunningRequest $postBody, $optParams = []) { $params = ['endpoint' => $endpoint, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('predictLongRunning', [$params], GoogleLongrunningOperation::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');
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285