172 lines
4.5 KiB
PHP
172 lines
4.5 KiB
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;
|
||
|
|
|
||
|
|
class GoogleCloudAiplatformV1AgentDataAgentConfig extends \Google\Collection
|
||
|
|
{
|
||
|
|
protected $collection_key = 'tools';
|
||
|
|
/**
|
||
|
|
* Required. Unique identifier of the agent. This ID is used to refer to this
|
||
|
|
* agent, e.g., in AgentEvent.author, or in the `sub_agents` field. It must be
|
||
|
|
* unique within the `agents` map.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $agentId;
|
||
|
|
/**
|
||
|
|
* Optional. The type or class of the agent (e.g., "LlmAgent", "RouterAgent",
|
||
|
|
* "ToolUseAgent"). Useful for the autorater to understand the expected
|
||
|
|
* behavior of the agent.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $agentType;
|
||
|
|
/**
|
||
|
|
* Optional. A high-level description of the agent's role and
|
||
|
|
* responsibilities. Critical for evaluating if the agent is routing tasks
|
||
|
|
* correctly.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $description;
|
||
|
|
/**
|
||
|
|
* Optional. Instructions from the developer for the agent. Can be static or a
|
||
|
|
* dynamic prompt template used with the `AgentEvent.state_delta` field.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $developerInstruction;
|
||
|
|
/**
|
||
|
|
* Optional. The list of valid agent IDs that this agent can delegate to. This
|
||
|
|
* defines the directed edges in the agent system graph topology.
|
||
|
|
*
|
||
|
|
* @var string[]
|
||
|
|
*/
|
||
|
|
public $subAgents;
|
||
|
|
protected $toolsType = GoogleCloudAiplatformV1Tool::class;
|
||
|
|
protected $toolsDataType = 'array';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Required. Unique identifier of the agent. This ID is used to refer to this
|
||
|
|
* agent, e.g., in AgentEvent.author, or in the `sub_agents` field. It must be
|
||
|
|
* unique within the `agents` map.
|
||
|
|
*
|
||
|
|
* @param string $agentId
|
||
|
|
*/
|
||
|
|
public function setAgentId($agentId)
|
||
|
|
{
|
||
|
|
$this->agentId = $agentId;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getAgentId()
|
||
|
|
{
|
||
|
|
return $this->agentId;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Optional. The type or class of the agent (e.g., "LlmAgent", "RouterAgent",
|
||
|
|
* "ToolUseAgent"). Useful for the autorater to understand the expected
|
||
|
|
* behavior of the agent.
|
||
|
|
*
|
||
|
|
* @param string $agentType
|
||
|
|
*/
|
||
|
|
public function setAgentType($agentType)
|
||
|
|
{
|
||
|
|
$this->agentType = $agentType;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getAgentType()
|
||
|
|
{
|
||
|
|
return $this->agentType;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Optional. A high-level description of the agent's role and
|
||
|
|
* responsibilities. Critical for evaluating if the agent is routing tasks
|
||
|
|
* correctly.
|
||
|
|
*
|
||
|
|
* @param string $description
|
||
|
|
*/
|
||
|
|
public function setDescription($description)
|
||
|
|
{
|
||
|
|
$this->description = $description;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getDescription()
|
||
|
|
{
|
||
|
|
return $this->description;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Optional. Instructions from the developer for the agent. Can be static or a
|
||
|
|
* dynamic prompt template used with the `AgentEvent.state_delta` field.
|
||
|
|
*
|
||
|
|
* @param string $developerInstruction
|
||
|
|
*/
|
||
|
|
public function setDeveloperInstruction($developerInstruction)
|
||
|
|
{
|
||
|
|
$this->developerInstruction = $developerInstruction;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getDeveloperInstruction()
|
||
|
|
{
|
||
|
|
return $this->developerInstruction;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Optional. The list of valid agent IDs that this agent can delegate to. This
|
||
|
|
* defines the directed edges in the agent system graph topology.
|
||
|
|
*
|
||
|
|
* @param string[] $subAgents
|
||
|
|
*/
|
||
|
|
public function setSubAgents($subAgents)
|
||
|
|
{
|
||
|
|
$this->subAgents = $subAgents;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string[]
|
||
|
|
*/
|
||
|
|
public function getSubAgents()
|
||
|
|
{
|
||
|
|
return $this->subAgents;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* Optional. The list of tools available to this agent.
|
||
|
|
*
|
||
|
|
* @param GoogleCloudAiplatformV1Tool[] $tools
|
||
|
|
*/
|
||
|
|
public function setTools($tools)
|
||
|
|
{
|
||
|
|
$this->tools = $tools;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return GoogleCloudAiplatformV1Tool[]
|
||
|
|
*/
|
||
|
|
public function getTools()
|
||
|
|
{
|
||
|
|
return $this->tools;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
||
|
|
class_alias(GoogleCloudAiplatformV1AgentDataAgentConfig::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1AgentDataAgentConfig');
|