agent

package
v1.1.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 23, 2026 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

View Source
const (
	AgentService_TriggerRun_FullMethodName                 = "/agent.AgentService/TriggerRun"
	AgentService_GetRunStatus_FullMethodName               = "/agent.AgentService/GetRunStatus"
	AgentService_CancelRun_FullMethodName                  = "/agent.AgentService/CancelRun"
	AgentService_CreateCustomAgent_FullMethodName          = "/agent.AgentService/CreateCustomAgent"
	AgentService_UpdateCustomAgent_FullMethodName          = "/agent.AgentService/UpdateCustomAgent"
	AgentService_DeleteCustomAgent_FullMethodName          = "/agent.AgentService/DeleteCustomAgent"
	AgentService_GetAgentDefinition_FullMethodName         = "/agent.AgentService/GetAgentDefinition"
	AgentService_ListAgentDefinitions_FullMethodName       = "/agent.AgentService/ListAgentDefinitions"
	AgentService_ListAvailableTools_FullMethodName         = "/agent.AgentService/ListAvailableTools"
	AgentService_ListAvailableModels_FullMethodName        = "/agent.AgentService/ListAvailableModels"
	AgentService_UpdateAgentAccountStatus_FullMethodName   = "/agent.AgentService/UpdateAgentAccountStatus"
	AgentService_GetRun_FullMethodName                     = "/agent.AgentService/GetRun"
	AgentService_ListRuns_FullMethodName                   = "/agent.AgentService/ListRuns"
	AgentService_ContinueRun_FullMethodName                = "/agent.AgentService/ContinueRun"
	AgentService_RetryRun_FullMethodName                   = "/agent.AgentService/RetryRun"
	AgentService_ListTokenUsage_FullMethodName             = "/agent.AgentService/ListTokenUsage"
	AgentService_ListAgentMemories_FullMethodName          = "/agent.AgentService/ListAgentMemories"
	AgentService_GetAgentMemory_FullMethodName             = "/agent.AgentService/GetAgentMemory"
	AgentService_CreateAgentMemory_FullMethodName          = "/agent.AgentService/CreateAgentMemory"
	AgentService_UpdateAgentMemory_FullMethodName          = "/agent.AgentService/UpdateAgentMemory"
	AgentService_DeleteAgentMemory_FullMethodName          = "/agent.AgentService/DeleteAgentMemory"
	AgentService_BatchGetAgentMemoriesByIDs_FullMethodName = "/agent.AgentService/BatchGetAgentMemoriesByIDs"
)

Variables

View Source
var AgentService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "agent.AgentService",
	HandlerType: (*AgentServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "TriggerRun",
			Handler:    _AgentService_TriggerRun_Handler,
		},
		{
			MethodName: "GetRunStatus",
			Handler:    _AgentService_GetRunStatus_Handler,
		},
		{
			MethodName: "CancelRun",
			Handler:    _AgentService_CancelRun_Handler,
		},
		{
			MethodName: "CreateCustomAgent",
			Handler:    _AgentService_CreateCustomAgent_Handler,
		},
		{
			MethodName: "UpdateCustomAgent",
			Handler:    _AgentService_UpdateCustomAgent_Handler,
		},
		{
			MethodName: "DeleteCustomAgent",
			Handler:    _AgentService_DeleteCustomAgent_Handler,
		},
		{
			MethodName: "GetAgentDefinition",
			Handler:    _AgentService_GetAgentDefinition_Handler,
		},
		{
			MethodName: "ListAgentDefinitions",
			Handler:    _AgentService_ListAgentDefinitions_Handler,
		},
		{
			MethodName: "ListAvailableTools",
			Handler:    _AgentService_ListAvailableTools_Handler,
		},
		{
			MethodName: "ListAvailableModels",
			Handler:    _AgentService_ListAvailableModels_Handler,
		},
		{
			MethodName: "UpdateAgentAccountStatus",
			Handler:    _AgentService_UpdateAgentAccountStatus_Handler,
		},
		{
			MethodName: "GetRun",
			Handler:    _AgentService_GetRun_Handler,
		},
		{
			MethodName: "ListRuns",
			Handler:    _AgentService_ListRuns_Handler,
		},
		{
			MethodName: "ContinueRun",
			Handler:    _AgentService_ContinueRun_Handler,
		},
		{
			MethodName: "RetryRun",
			Handler:    _AgentService_RetryRun_Handler,
		},
		{
			MethodName: "ListTokenUsage",
			Handler:    _AgentService_ListTokenUsage_Handler,
		},
		{
			MethodName: "ListAgentMemories",
			Handler:    _AgentService_ListAgentMemories_Handler,
		},
		{
			MethodName: "GetAgentMemory",
			Handler:    _AgentService_GetAgentMemory_Handler,
		},
		{
			MethodName: "CreateAgentMemory",
			Handler:    _AgentService_CreateAgentMemory_Handler,
		},
		{
			MethodName: "UpdateAgentMemory",
			Handler:    _AgentService_UpdateAgentMemory_Handler,
		},
		{
			MethodName: "DeleteAgentMemory",
			Handler:    _AgentService_DeleteAgentMemory_Handler,
		},
		{
			MethodName: "BatchGetAgentMemoriesByIDs",
			Handler:    _AgentService_BatchGetAgentMemoriesByIDs_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "agent/agent.proto",
}

AgentService_ServiceDesc is the grpc.ServiceDesc for AgentService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_agent_agent_proto protoreflect.FileDescriptor

Functions

func RegisterAgentServiceServer

func RegisterAgentServiceServer(s grpc.ServiceRegistrar, srv AgentServiceServer)

Types

type AgentAccountStatusInfo

type AgentAccountStatusInfo struct {
	Id                string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	AccountId         string `protobuf:"bytes,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	AgentDefinitionId string `protobuf:"bytes,3,opt,name=agent_definition_id,json=agentDefinitionId,proto3" json:"agent_definition_id,omitempty"`
	StatusCode        string `protobuf:"bytes,4,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	CreatedAt         string `protobuf:"bytes,5,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt         string `protobuf:"bytes,6,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentAccountStatusInfo) Descriptor deprecated

func (*AgentAccountStatusInfo) Descriptor() ([]byte, []int)

Deprecated: Use AgentAccountStatusInfo.ProtoReflect.Descriptor instead.

func (*AgentAccountStatusInfo) GetAccountId

func (x *AgentAccountStatusInfo) GetAccountId() string

func (*AgentAccountStatusInfo) GetAgentDefinitionId

func (x *AgentAccountStatusInfo) GetAgentDefinitionId() string

func (*AgentAccountStatusInfo) GetCreatedAt

func (x *AgentAccountStatusInfo) GetCreatedAt() string

func (*AgentAccountStatusInfo) GetId

func (x *AgentAccountStatusInfo) GetId() string

func (*AgentAccountStatusInfo) GetStatusCode

func (x *AgentAccountStatusInfo) GetStatusCode() string

func (*AgentAccountStatusInfo) GetUpdatedAt

func (x *AgentAccountStatusInfo) GetUpdatedAt() string

func (*AgentAccountStatusInfo) ProtoMessage

func (*AgentAccountStatusInfo) ProtoMessage()

func (*AgentAccountStatusInfo) ProtoReflect

func (x *AgentAccountStatusInfo) ProtoReflect() protoreflect.Message

func (*AgentAccountStatusInfo) Reset

func (x *AgentAccountStatusInfo) Reset()

func (*AgentAccountStatusInfo) String

func (x *AgentAccountStatusInfo) String() string

type AgentActionInfo

type AgentActionInfo struct {
	Id                  string  `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	AccountId           string  `protobuf:"bytes,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	AgentRunId          string  `protobuf:"bytes,3,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	ToolSlug            string  `protobuf:"bytes,4,opt,name=tool_slug,json=toolSlug,proto3" json:"tool_slug,omitempty"`
	StatusCode          string  `protobuf:"bytes,5,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Label               string  `protobuf:"bytes,6,opt,name=label,proto3" json:"label,omitempty"`
	Description         string  `protobuf:"bytes,7,opt,name=description,proto3" json:"description,omitempty"`
	Input               string  `protobuf:"bytes,8,opt,name=input,proto3" json:"input,omitempty"`
	Output              string  `protobuf:"bytes,9,opt,name=output,proto3" json:"output,omitempty"`
	ErrorMessage        string  `protobuf:"bytes,10,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`
	EntityType          string  `protobuf:"bytes,11,opt,name=entity_type,json=entityType,proto3" json:"entity_type,omitempty"`
	EntityId            string  `protobuf:"bytes,12,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
	RequiresReview      bool    `protobuf:"varint,13,opt,name=requires_review,json=requiresReview,proto3" json:"requires_review,omitempty"`
	ReviewedAt          string  `protobuf:"bytes,14,opt,name=reviewed_at,json=reviewedAt,proto3" json:"reviewed_at,omitempty"`
	ReviewedBy          string  `protobuf:"bytes,15,opt,name=reviewed_by,json=reviewedBy,proto3" json:"reviewed_by,omitempty"`
	ExecutedAt          string  `protobuf:"bytes,16,opt,name=executed_at,json=executedAt,proto3" json:"executed_at,omitempty"`
	CreatedAt           string  `protobuf:"bytes,17,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt           string  `protobuf:"bytes,18,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	ReviewedByActorType string  `protobuf:"bytes,19,opt,name=reviewed_by_actor_type,json=reviewedByActorType,proto3" json:"reviewed_by_actor_type,omitempty"`
	ReviewedByActorName string  `protobuf:"bytes,20,opt,name=reviewed_by_actor_name,json=reviewedByActorName,proto3" json:"reviewed_by_actor_name,omitempty"`
	RunStatusCode       *string `protobuf:"bytes,21,opt,name=run_status_code,json=runStatusCode,proto3,oneof" json:"run_status_code,omitempty"`
	RunTriggerType      *string `protobuf:"bytes,22,opt,name=run_trigger_type,json=runTriggerType,proto3,oneof" json:"run_trigger_type,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentActionInfo) Descriptor deprecated

func (*AgentActionInfo) Descriptor() ([]byte, []int)

Deprecated: Use AgentActionInfo.ProtoReflect.Descriptor instead.

func (*AgentActionInfo) GetAccountId

func (x *AgentActionInfo) GetAccountId() string

func (*AgentActionInfo) GetAgentRunId

func (x *AgentActionInfo) GetAgentRunId() string

func (*AgentActionInfo) GetCreatedAt

func (x *AgentActionInfo) GetCreatedAt() string

func (*AgentActionInfo) GetDescription

func (x *AgentActionInfo) GetDescription() string

func (*AgentActionInfo) GetEntityId

func (x *AgentActionInfo) GetEntityId() string

func (*AgentActionInfo) GetEntityType

func (x *AgentActionInfo) GetEntityType() string

func (*AgentActionInfo) GetErrorMessage

func (x *AgentActionInfo) GetErrorMessage() string

func (*AgentActionInfo) GetExecutedAt

func (x *AgentActionInfo) GetExecutedAt() string

func (*AgentActionInfo) GetId

func (x *AgentActionInfo) GetId() string

func (*AgentActionInfo) GetInput

func (x *AgentActionInfo) GetInput() string

func (*AgentActionInfo) GetLabel

func (x *AgentActionInfo) GetLabel() string

func (*AgentActionInfo) GetOutput

func (x *AgentActionInfo) GetOutput() string

func (*AgentActionInfo) GetRequiresReview

func (x *AgentActionInfo) GetRequiresReview() bool

func (*AgentActionInfo) GetReviewedAt

func (x *AgentActionInfo) GetReviewedAt() string

func (*AgentActionInfo) GetReviewedBy

func (x *AgentActionInfo) GetReviewedBy() string

func (*AgentActionInfo) GetReviewedByActorName

func (x *AgentActionInfo) GetReviewedByActorName() string

func (*AgentActionInfo) GetReviewedByActorType

func (x *AgentActionInfo) GetReviewedByActorType() string

func (*AgentActionInfo) GetRunStatusCode

func (x *AgentActionInfo) GetRunStatusCode() string

func (*AgentActionInfo) GetRunTriggerType

func (x *AgentActionInfo) GetRunTriggerType() string

func (*AgentActionInfo) GetStatusCode

func (x *AgentActionInfo) GetStatusCode() string

func (*AgentActionInfo) GetToolSlug

func (x *AgentActionInfo) GetToolSlug() string

func (*AgentActionInfo) GetUpdatedAt

func (x *AgentActionInfo) GetUpdatedAt() string

func (*AgentActionInfo) ProtoMessage

func (*AgentActionInfo) ProtoMessage()

func (*AgentActionInfo) ProtoReflect

func (x *AgentActionInfo) ProtoReflect() protoreflect.Message

func (*AgentActionInfo) Reset

func (x *AgentActionInfo) Reset()

func (*AgentActionInfo) String

func (x *AgentActionInfo) String() string

type AgentDefinitionInfo

type AgentDefinitionInfo struct {
	Id             string                     `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name           string                     `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Slug           string                     `protobuf:"bytes,3,opt,name=slug,proto3" json:"slug,omitempty"`
	Description    *string                    `protobuf:"bytes,4,opt,name=description,proto3,oneof" json:"description,omitempty"`
	DefinitionType string                     `protobuf:"bytes,5,opt,name=definition_type,json=definitionType,proto3" json:"definition_type,omitempty"`
	CategoryCode   string                     `protobuf:"bytes,6,opt,name=category_code,json=categoryCode,proto3" json:"category_code,omitempty"`
	TriggerType    string                     `protobuf:"bytes,7,opt,name=trigger_type,json=triggerType,proto3" json:"trigger_type,omitempty"`
	IsEditable     bool                       `protobuf:"varint,8,opt,name=is_editable,json=isEditable,proto3" json:"is_editable,omitempty"`
	ConfigJson     string                     `protobuf:"bytes,9,opt,name=config_json,json=configJson,proto3" json:"config_json,omitempty"`
	Tools          []*AgentDefinitionToolInfo `protobuf:"bytes,10,rep,name=tools,proto3" json:"tools,omitempty"`
	CreatedAt      string                     `protobuf:"bytes,11,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt      string                     `protobuf:"bytes,12,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	RoleId         string                     `protobuf:"bytes,13,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	AccountStatus  *AgentAccountStatusInfo    `protobuf:"bytes,14,opt,name=account_status,json=accountStatus,proto3" json:"account_status,omitempty"`
	RoleName       *string                    `protobuf:"bytes,15,opt,name=role_name,json=roleName,proto3,oneof" json:"role_name,omitempty"`
	RoleTypeCode   *string                    `protobuf:"bytes,16,opt,name=role_type_code,json=roleTypeCode,proto3,oneof" json:"role_type_code,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentDefinitionInfo) Descriptor deprecated

func (*AgentDefinitionInfo) Descriptor() ([]byte, []int)

Deprecated: Use AgentDefinitionInfo.ProtoReflect.Descriptor instead.

func (*AgentDefinitionInfo) GetAccountStatus

func (x *AgentDefinitionInfo) GetAccountStatus() *AgentAccountStatusInfo

func (*AgentDefinitionInfo) GetCategoryCode

func (x *AgentDefinitionInfo) GetCategoryCode() string

func (*AgentDefinitionInfo) GetConfigJson

func (x *AgentDefinitionInfo) GetConfigJson() string

func (*AgentDefinitionInfo) GetCreatedAt

func (x *AgentDefinitionInfo) GetCreatedAt() string

func (*AgentDefinitionInfo) GetDefinitionType

func (x *AgentDefinitionInfo) GetDefinitionType() string

func (*AgentDefinitionInfo) GetDescription

func (x *AgentDefinitionInfo) GetDescription() string

func (*AgentDefinitionInfo) GetId

func (x *AgentDefinitionInfo) GetId() string

func (*AgentDefinitionInfo) GetIsEditable

func (x *AgentDefinitionInfo) GetIsEditable() bool

func (*AgentDefinitionInfo) GetName

func (x *AgentDefinitionInfo) GetName() string

func (*AgentDefinitionInfo) GetRoleId

func (x *AgentDefinitionInfo) GetRoleId() string

func (*AgentDefinitionInfo) GetRoleName

func (x *AgentDefinitionInfo) GetRoleName() string

func (*AgentDefinitionInfo) GetRoleTypeCode

func (x *AgentDefinitionInfo) GetRoleTypeCode() string

func (*AgentDefinitionInfo) GetSlug

func (x *AgentDefinitionInfo) GetSlug() string

func (*AgentDefinitionInfo) GetTools

func (*AgentDefinitionInfo) GetTriggerType

func (x *AgentDefinitionInfo) GetTriggerType() string

func (*AgentDefinitionInfo) GetUpdatedAt

func (x *AgentDefinitionInfo) GetUpdatedAt() string

func (*AgentDefinitionInfo) ProtoMessage

func (*AgentDefinitionInfo) ProtoMessage()

func (*AgentDefinitionInfo) ProtoReflect

func (x *AgentDefinitionInfo) ProtoReflect() protoreflect.Message

func (*AgentDefinitionInfo) Reset

func (x *AgentDefinitionInfo) Reset()

func (*AgentDefinitionInfo) String

func (x *AgentDefinitionInfo) String() string

type AgentDefinitionToolInfo

type AgentDefinitionToolInfo struct {
	Id                  string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	ToolSlug            string   `protobuf:"bytes,2,opt,name=tool_slug,json=toolSlug,proto3" json:"tool_slug,omitempty"`
	DisplayName         string   `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Description         string   `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	ConfigSchemaJson    string   `protobuf:"bytes,5,opt,name=config_schema_json,json=configSchemaJson,proto3" json:"config_schema_json,omitempty"`
	Category            string   `protobuf:"bytes,6,opt,name=category,proto3" json:"category,omitempty"`
	ConfigJson          string   `protobuf:"bytes,7,opt,name=config_json,json=configJson,proto3" json:"config_json,omitempty"`
	SortOrder           int32    `protobuf:"varint,8,opt,name=sort_order,json=sortOrder,proto3" json:"sort_order,omitempty"`
	RequireReview       bool     `protobuf:"varint,9,opt,name=require_review,json=requireReview,proto3" json:"require_review,omitempty"`
	GroupId             string   `protobuf:"bytes,10,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	GroupName           string   `protobuf:"bytes,11,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty"`
	RequiredPermissions []string `protobuf:"bytes,12,rep,name=required_permissions,json=requiredPermissions,proto3" json:"required_permissions,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentDefinitionToolInfo) Descriptor deprecated

func (*AgentDefinitionToolInfo) Descriptor() ([]byte, []int)

Deprecated: Use AgentDefinitionToolInfo.ProtoReflect.Descriptor instead.

func (*AgentDefinitionToolInfo) GetCategory

func (x *AgentDefinitionToolInfo) GetCategory() string

func (*AgentDefinitionToolInfo) GetConfigJson

func (x *AgentDefinitionToolInfo) GetConfigJson() string

func (*AgentDefinitionToolInfo) GetConfigSchemaJson

func (x *AgentDefinitionToolInfo) GetConfigSchemaJson() string

func (*AgentDefinitionToolInfo) GetDescription

func (x *AgentDefinitionToolInfo) GetDescription() string

func (*AgentDefinitionToolInfo) GetDisplayName

func (x *AgentDefinitionToolInfo) GetDisplayName() string

func (*AgentDefinitionToolInfo) GetGroupId

func (x *AgentDefinitionToolInfo) GetGroupId() string

func (*AgentDefinitionToolInfo) GetGroupName

func (x *AgentDefinitionToolInfo) GetGroupName() string

func (*AgentDefinitionToolInfo) GetId

func (x *AgentDefinitionToolInfo) GetId() string

func (*AgentDefinitionToolInfo) GetRequireReview

func (x *AgentDefinitionToolInfo) GetRequireReview() bool

func (*AgentDefinitionToolInfo) GetRequiredPermissions

func (x *AgentDefinitionToolInfo) GetRequiredPermissions() []string

func (*AgentDefinitionToolInfo) GetSortOrder

func (x *AgentDefinitionToolInfo) GetSortOrder() int32

func (*AgentDefinitionToolInfo) GetToolSlug

func (x *AgentDefinitionToolInfo) GetToolSlug() string

func (*AgentDefinitionToolInfo) ProtoMessage

func (*AgentDefinitionToolInfo) ProtoMessage()

func (*AgentDefinitionToolInfo) ProtoReflect

func (x *AgentDefinitionToolInfo) ProtoReflect() protoreflect.Message

func (*AgentDefinitionToolInfo) Reset

func (x *AgentDefinitionToolInfo) Reset()

func (*AgentDefinitionToolInfo) String

func (x *AgentDefinitionToolInfo) String() string

type AgentMemoryInfo

type AgentMemoryInfo struct {
	Id           string  `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	AccountId    string  `protobuf:"bytes,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	Category     string  `protobuf:"bytes,3,opt,name=category,proto3" json:"category,omitempty"`
	Content      string  `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"`
	MetadataJson string  `protobuf:"bytes,5,opt,name=metadata_json,json=metadataJson,proto3" json:"metadata_json,omitempty"`
	EntityType   string  `protobuf:"bytes,6,opt,name=entity_type,json=entityType,proto3" json:"entity_type,omitempty"`
	EntityId     string  `protobuf:"bytes,7,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
	Importance   float64 `protobuf:"fixed64,8,opt,name=importance,proto3" json:"importance,omitempty"`
	ExpiresAt    string  `protobuf:"bytes,9,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	CreatedAt    string  `protobuf:"bytes,10,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt    string  `protobuf:"bytes,11,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentMemoryInfo) Descriptor deprecated

func (*AgentMemoryInfo) Descriptor() ([]byte, []int)

Deprecated: Use AgentMemoryInfo.ProtoReflect.Descriptor instead.

func (*AgentMemoryInfo) GetAccountId

func (x *AgentMemoryInfo) GetAccountId() string

func (*AgentMemoryInfo) GetCategory

func (x *AgentMemoryInfo) GetCategory() string

func (*AgentMemoryInfo) GetContent

func (x *AgentMemoryInfo) GetContent() string

func (*AgentMemoryInfo) GetCreatedAt

func (x *AgentMemoryInfo) GetCreatedAt() string

func (*AgentMemoryInfo) GetEntityId

func (x *AgentMemoryInfo) GetEntityId() string

func (*AgentMemoryInfo) GetEntityType

func (x *AgentMemoryInfo) GetEntityType() string

func (*AgentMemoryInfo) GetExpiresAt

func (x *AgentMemoryInfo) GetExpiresAt() string

func (*AgentMemoryInfo) GetId

func (x *AgentMemoryInfo) GetId() string

func (*AgentMemoryInfo) GetImportance

func (x *AgentMemoryInfo) GetImportance() float64

func (*AgentMemoryInfo) GetMetadataJson

func (x *AgentMemoryInfo) GetMetadataJson() string

func (*AgentMemoryInfo) GetUpdatedAt

func (x *AgentMemoryInfo) GetUpdatedAt() string

func (*AgentMemoryInfo) ProtoMessage

func (*AgentMemoryInfo) ProtoMessage()

func (*AgentMemoryInfo) ProtoReflect

func (x *AgentMemoryInfo) ProtoReflect() protoreflect.Message

func (*AgentMemoryInfo) Reset

func (x *AgentMemoryInfo) Reset()

func (*AgentMemoryInfo) String

func (x *AgentMemoryInfo) String() string

type AgentRunInfo

type AgentRunInfo struct {
	Id                      string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	AccountId               string               `protobuf:"bytes,2,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"`
	AgentDefinitionId       string               `protobuf:"bytes,3,opt,name=agent_definition_id,json=agentDefinitionId,proto3" json:"agent_definition_id,omitempty"`
	AgentConfigId           string               `protobuf:"bytes,4,opt,name=agent_config_id,json=agentConfigId,proto3" json:"agent_config_id,omitempty"`
	StatusCode              string               `protobuf:"bytes,5,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	TriggerType             string               `protobuf:"bytes,6,opt,name=trigger_type,json=triggerType,proto3" json:"trigger_type,omitempty"`
	Input                   string               `protobuf:"bytes,7,opt,name=input,proto3" json:"input,omitempty"`
	Output                  string               `protobuf:"bytes,8,opt,name=output,proto3" json:"output,omitempty"`
	ErrorMessage            string               `protobuf:"bytes,9,opt,name=error_message,json=errorMessage,proto3" json:"error_message,omitempty"`
	StartedAt               string               `protobuf:"bytes,10,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"`
	CompletedAt             string               `protobuf:"bytes,11,opt,name=completed_at,json=completedAt,proto3" json:"completed_at,omitempty"`
	DurationMs              int32                `protobuf:"varint,12,opt,name=duration_ms,json=durationMs,proto3" json:"duration_ms,omitempty"`
	TotalInputTokens        int64                `protobuf:"varint,13,opt,name=total_input_tokens,json=totalInputTokens,proto3" json:"total_input_tokens,omitempty"`
	TotalOutputTokens       int64                `protobuf:"varint,14,opt,name=total_output_tokens,json=totalOutputTokens,proto3" json:"total_output_tokens,omitempty"`
	CreatedAt               string               `protobuf:"bytes,15,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt               string               `protobuf:"bytes,16,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	Actions                 []*AgentActionInfo   `protobuf:"bytes,17,rep,name=actions,proto3" json:"actions,omitempty"`
	Definition              *AgentDefinitionInfo `protobuf:"bytes,18,opt,name=definition,proto3" json:"definition,omitempty"`
	Steps                   []*AgentRunStepInfo  `protobuf:"bytes,19,rep,name=steps,proto3" json:"steps,omitempty"`
	TriggeredByActorId      string               `protobuf:"bytes,20,opt,name=triggered_by_actor_id,json=triggeredByActorId,proto3" json:"triggered_by_actor_id,omitempty"`
	TriggeredByIdentityType string               `` /* 135-byte string literal not displayed */
	TriggeredByActorName    string               `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*AgentRunInfo) Descriptor deprecated

func (*AgentRunInfo) Descriptor() ([]byte, []int)

Deprecated: Use AgentRunInfo.ProtoReflect.Descriptor instead.

func (*AgentRunInfo) GetAccountId

func (x *AgentRunInfo) GetAccountId() string

func (*AgentRunInfo) GetActions

func (x *AgentRunInfo) GetActions() []*AgentActionInfo

func (*AgentRunInfo) GetAgentConfigId

func (x *AgentRunInfo) GetAgentConfigId() string

func (*AgentRunInfo) GetAgentDefinitionId

func (x *AgentRunInfo) GetAgentDefinitionId() string

func (*AgentRunInfo) GetCompletedAt

func (x *AgentRunInfo) GetCompletedAt() string

func (*AgentRunInfo) GetCreatedAt

func (x *AgentRunInfo) GetCreatedAt() string

func (*AgentRunInfo) GetDefinition

func (x *AgentRunInfo) GetDefinition() *AgentDefinitionInfo

func (*AgentRunInfo) GetDurationMs

func (x *AgentRunInfo) GetDurationMs() int32

func (*AgentRunInfo) GetErrorMessage

func (x *AgentRunInfo) GetErrorMessage() string

func (*AgentRunInfo) GetId

func (x *AgentRunInfo) GetId() string

func (*AgentRunInfo) GetInput

func (x *AgentRunInfo) GetInput() string

func (*AgentRunInfo) GetOutput

func (x *AgentRunInfo) GetOutput() string

func (*AgentRunInfo) GetStartedAt

func (x *AgentRunInfo) GetStartedAt() string

func (*AgentRunInfo) GetStatusCode

func (x *AgentRunInfo) GetStatusCode() string

func (*AgentRunInfo) GetSteps

func (x *AgentRunInfo) GetSteps() []*AgentRunStepInfo

func (*AgentRunInfo) GetTotalInputTokens

func (x *AgentRunInfo) GetTotalInputTokens() int64

func (*AgentRunInfo) GetTotalOutputTokens

func (x *AgentRunInfo) GetTotalOutputTokens() int64

func (*AgentRunInfo) GetTriggerType

func (x *AgentRunInfo) GetTriggerType() string

func (*AgentRunInfo) GetTriggeredByActorId

func (x *AgentRunInfo) GetTriggeredByActorId() string

func (*AgentRunInfo) GetTriggeredByActorName

func (x *AgentRunInfo) GetTriggeredByActorName() string

func (*AgentRunInfo) GetTriggeredByIdentityType

func (x *AgentRunInfo) GetTriggeredByIdentityType() string

func (*AgentRunInfo) GetUpdatedAt

func (x *AgentRunInfo) GetUpdatedAt() string

func (*AgentRunInfo) ProtoMessage

func (*AgentRunInfo) ProtoMessage()

func (*AgentRunInfo) ProtoReflect

func (x *AgentRunInfo) ProtoReflect() protoreflect.Message

func (*AgentRunInfo) Reset

func (x *AgentRunInfo) Reset()

func (*AgentRunInfo) String

func (x *AgentRunInfo) String() string

type AgentRunStepInfo

type AgentRunStepInfo struct {
	Id            string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	AgentRunId    string `protobuf:"bytes,2,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	StepType      string `protobuf:"bytes,3,opt,name=step_type,json=stepType,proto3" json:"step_type,omitempty"`
	Title         string `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty"`
	Content       string `protobuf:"bytes,5,opt,name=content,proto3" json:"content,omitempty"`
	Sequence      int32  `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
	DurationMs    int32  `protobuf:"varint,7,opt,name=duration_ms,json=durationMs,proto3" json:"duration_ms,omitempty"`
	AgentActionId string `protobuf:"bytes,8,opt,name=agent_action_id,json=agentActionId,proto3" json:"agent_action_id,omitempty"`
	MetadataJson  string `protobuf:"bytes,9,opt,name=metadata_json,json=metadataJson,proto3" json:"metadata_json,omitempty"`
	CreatedAt     string `protobuf:"bytes,10,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	ActorId       string `protobuf:"bytes,11,opt,name=actor_id,json=actorId,proto3" json:"actor_id,omitempty"`
	ActorType     string `protobuf:"bytes,12,opt,name=actor_type,json=actorType,proto3" json:"actor_type,omitempty"`
	ActorName     string `protobuf:"bytes,13,opt,name=actor_name,json=actorName,proto3" json:"actor_name,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentRunStepInfo) Descriptor deprecated

func (*AgentRunStepInfo) Descriptor() ([]byte, []int)

Deprecated: Use AgentRunStepInfo.ProtoReflect.Descriptor instead.

func (*AgentRunStepInfo) GetActorId

func (x *AgentRunStepInfo) GetActorId() string

func (*AgentRunStepInfo) GetActorName

func (x *AgentRunStepInfo) GetActorName() string

func (*AgentRunStepInfo) GetActorType

func (x *AgentRunStepInfo) GetActorType() string

func (*AgentRunStepInfo) GetAgentActionId

func (x *AgentRunStepInfo) GetAgentActionId() string

func (*AgentRunStepInfo) GetAgentRunId

func (x *AgentRunStepInfo) GetAgentRunId() string

func (*AgentRunStepInfo) GetContent

func (x *AgentRunStepInfo) GetContent() string

func (*AgentRunStepInfo) GetCreatedAt

func (x *AgentRunStepInfo) GetCreatedAt() string

func (*AgentRunStepInfo) GetDurationMs

func (x *AgentRunStepInfo) GetDurationMs() int32

func (*AgentRunStepInfo) GetId

func (x *AgentRunStepInfo) GetId() string

func (*AgentRunStepInfo) GetMetadataJson

func (x *AgentRunStepInfo) GetMetadataJson() string

func (*AgentRunStepInfo) GetSequence

func (x *AgentRunStepInfo) GetSequence() int32

func (*AgentRunStepInfo) GetStepType

func (x *AgentRunStepInfo) GetStepType() string

func (*AgentRunStepInfo) GetTitle

func (x *AgentRunStepInfo) GetTitle() string

func (*AgentRunStepInfo) ProtoMessage

func (*AgentRunStepInfo) ProtoMessage()

func (*AgentRunStepInfo) ProtoReflect

func (x *AgentRunStepInfo) ProtoReflect() protoreflect.Message

func (*AgentRunStepInfo) Reset

func (x *AgentRunStepInfo) Reset()

func (*AgentRunStepInfo) String

func (x *AgentRunStepInfo) String() string

type AgentServiceClient

type AgentServiceClient interface {
	// TriggerRun initiates an agent run for the specified agent definition and account.
	TriggerRun(ctx context.Context, in *TriggerRunRequest, opts ...grpc.CallOption) (*TriggerRunResponse, error)
	// GetRunStatus returns the current status and summary of an agent run.
	GetRunStatus(ctx context.Context, in *GetRunStatusRequest, opts ...grpc.CallOption) (*GetRunStatusResponse, error)
	// CancelRun cancels a running or pending agent run.
	CancelRun(ctx context.Context, in *CancelRunRequest, opts ...grpc.CallOption) (*CancelRunResponse, error)
	// CreateCustomAgent creates a new custom agent definition for an account.
	CreateCustomAgent(ctx context.Context, in *CreateCustomAgentRequest, opts ...grpc.CallOption) (*CreateCustomAgentResponse, error)
	// UpdateCustomAgent updates an existing custom agent definition.
	UpdateCustomAgent(ctx context.Context, in *UpdateCustomAgentRequest, opts ...grpc.CallOption) (*UpdateCustomAgentResponse, error)
	// DeleteCustomAgent soft-deletes a custom agent definition.
	DeleteCustomAgent(ctx context.Context, in *DeleteCustomAgentRequest, opts ...grpc.CallOption) (*DeleteCustomAgentResponse, error)
	// GetAgentDefinition returns a single agent definition with its tools.
	GetAgentDefinition(ctx context.Context, in *GetAgentDefinitionRequest, opts ...grpc.CallOption) (*GetAgentDefinitionResponse, error)
	// ListAgentDefinitions returns system + custom agent definitions for an account.
	ListAgentDefinitions(ctx context.Context, in *ListAgentDefinitionsRequest, opts ...grpc.CallOption) (*ListAgentDefinitionsResponse, error)
	// ListAvailableTools returns all available platform tools.
	ListAvailableTools(ctx context.Context, in *ListAvailableToolsRequest, opts ...grpc.CallOption) (*ListAvailableToolsResponse, error)
	// ListAvailableModels returns the catalog of LLM models agents may use.
	ListAvailableModels(ctx context.Context, in *ListAvailableModelsRequest, opts ...grpc.CallOption) (*ListAvailableModelsResponse, error)
	// UpdateAgentAccountStatus upserts the per-account status for an agent definition.
	UpdateAgentAccountStatus(ctx context.Context, in *UpdateAgentAccountStatusRequest, opts ...grpc.CallOption) (*UpdateAgentAccountStatusResponse, error)
	// GetRun returns a full agent run with optional actions and definition.
	GetRun(ctx context.Context, in *GetRunRequest, opts ...grpc.CallOption) (*GetRunResponse, error)
	// ListRuns returns a paginated list of agent runs for an account.
	ListRuns(ctx context.Context, in *ListRunsRequest, opts ...grpc.CallOption) (*ListRunsResponse, error)
	// ContinueRun continues an agent run that is awaiting input.
	ContinueRun(ctx context.Context, in *ContinueRunRequest, opts ...grpc.CallOption) (*ContinueRunResponse, error)
	// RetryRun re-attempts a failed run by resuming its transcript (no new user message).
	RetryRun(ctx context.Context, in *RetryRunRequest, opts ...grpc.CallOption) (*RetryRunResponse, error)
	// ListTokenUsage returns a paginated list of daily agent token usage records.
	ListTokenUsage(ctx context.Context, in *ListTokenUsageRequest, opts ...grpc.CallOption) (*ListTokenUsageResponse, error)
	// ListAgentMemories returns a paginated list of agent memories for an account.
	ListAgentMemories(ctx context.Context, in *ListAgentMemoriesRequest, opts ...grpc.CallOption) (*ListAgentMemoriesResponse, error)
	// GetAgentMemory returns a single agent memory by ID.
	GetAgentMemory(ctx context.Context, in *GetAgentMemoryRequest, opts ...grpc.CallOption) (*GetAgentMemoryResponse, error)
	// CreateAgentMemory creates a new agent memory.
	CreateAgentMemory(ctx context.Context, in *CreateAgentMemoryRequest, opts ...grpc.CallOption) (*CreateAgentMemoryResponse, error)
	// UpdateAgentMemory updates an existing agent memory.
	UpdateAgentMemory(ctx context.Context, in *UpdateAgentMemoryRequest, opts ...grpc.CallOption) (*UpdateAgentMemoryResponse, error)
	// DeleteAgentMemory deletes an agent memory.
	DeleteAgentMemory(ctx context.Context, in *DeleteAgentMemoryRequest, opts ...grpc.CallOption) (*DeleteAgentMemoryResponse, error)
	// Returns agent memories by ID for the api-gateway include resolver.
	BatchGetAgentMemoriesByIDs(ctx context.Context, in *BatchGetAgentMemoriesByIDsRequest, opts ...grpc.CallOption) (*BatchGetAgentMemoriesByIDsResponse, error)
}

AgentServiceClient is the client API for AgentService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type AgentServiceServer

type AgentServiceServer interface {
	// TriggerRun initiates an agent run for the specified agent definition and account.
	TriggerRun(context.Context, *TriggerRunRequest) (*TriggerRunResponse, error)
	// GetRunStatus returns the current status and summary of an agent run.
	GetRunStatus(context.Context, *GetRunStatusRequest) (*GetRunStatusResponse, error)
	// CancelRun cancels a running or pending agent run.
	CancelRun(context.Context, *CancelRunRequest) (*CancelRunResponse, error)
	// CreateCustomAgent creates a new custom agent definition for an account.
	CreateCustomAgent(context.Context, *CreateCustomAgentRequest) (*CreateCustomAgentResponse, error)
	// UpdateCustomAgent updates an existing custom agent definition.
	UpdateCustomAgent(context.Context, *UpdateCustomAgentRequest) (*UpdateCustomAgentResponse, error)
	// DeleteCustomAgent soft-deletes a custom agent definition.
	DeleteCustomAgent(context.Context, *DeleteCustomAgentRequest) (*DeleteCustomAgentResponse, error)
	// GetAgentDefinition returns a single agent definition with its tools.
	GetAgentDefinition(context.Context, *GetAgentDefinitionRequest) (*GetAgentDefinitionResponse, error)
	// ListAgentDefinitions returns system + custom agent definitions for an account.
	ListAgentDefinitions(context.Context, *ListAgentDefinitionsRequest) (*ListAgentDefinitionsResponse, error)
	// ListAvailableTools returns all available platform tools.
	ListAvailableTools(context.Context, *ListAvailableToolsRequest) (*ListAvailableToolsResponse, error)
	// ListAvailableModels returns the catalog of LLM models agents may use.
	ListAvailableModels(context.Context, *ListAvailableModelsRequest) (*ListAvailableModelsResponse, error)
	// UpdateAgentAccountStatus upserts the per-account status for an agent definition.
	UpdateAgentAccountStatus(context.Context, *UpdateAgentAccountStatusRequest) (*UpdateAgentAccountStatusResponse, error)
	// GetRun returns a full agent run with optional actions and definition.
	GetRun(context.Context, *GetRunRequest) (*GetRunResponse, error)
	// ListRuns returns a paginated list of agent runs for an account.
	ListRuns(context.Context, *ListRunsRequest) (*ListRunsResponse, error)
	// ContinueRun continues an agent run that is awaiting input.
	ContinueRun(context.Context, *ContinueRunRequest) (*ContinueRunResponse, error)
	// RetryRun re-attempts a failed run by resuming its transcript (no new user message).
	RetryRun(context.Context, *RetryRunRequest) (*RetryRunResponse, error)
	// ListTokenUsage returns a paginated list of daily agent token usage records.
	ListTokenUsage(context.Context, *ListTokenUsageRequest) (*ListTokenUsageResponse, error)
	// ListAgentMemories returns a paginated list of agent memories for an account.
	ListAgentMemories(context.Context, *ListAgentMemoriesRequest) (*ListAgentMemoriesResponse, error)
	// GetAgentMemory returns a single agent memory by ID.
	GetAgentMemory(context.Context, *GetAgentMemoryRequest) (*GetAgentMemoryResponse, error)
	// CreateAgentMemory creates a new agent memory.
	CreateAgentMemory(context.Context, *CreateAgentMemoryRequest) (*CreateAgentMemoryResponse, error)
	// UpdateAgentMemory updates an existing agent memory.
	UpdateAgentMemory(context.Context, *UpdateAgentMemoryRequest) (*UpdateAgentMemoryResponse, error)
	// DeleteAgentMemory deletes an agent memory.
	DeleteAgentMemory(context.Context, *DeleteAgentMemoryRequest) (*DeleteAgentMemoryResponse, error)
	// Returns agent memories by ID for the api-gateway include resolver.
	BatchGetAgentMemoriesByIDs(context.Context, *BatchGetAgentMemoriesByIDsRequest) (*BatchGetAgentMemoriesByIDsResponse, error)
	// contains filtered or unexported methods
}

AgentServiceServer is the server API for AgentService service. All implementations must embed UnimplementedAgentServiceServer for forward compatibility.

type AgentTokenUsageInfo

type AgentTokenUsageInfo struct {
	Id           string  `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Date         string  `protobuf:"bytes,2,opt,name=date,proto3" json:"date,omitempty"`
	InputTokens  int64   `protobuf:"varint,3,opt,name=input_tokens,json=inputTokens,proto3" json:"input_tokens,omitempty"`
	OutputTokens int64   `protobuf:"varint,4,opt,name=output_tokens,json=outputTokens,proto3" json:"output_tokens,omitempty"`
	TotalCost    float64 `protobuf:"fixed64,5,opt,name=total_cost,json=totalCost,proto3" json:"total_cost,omitempty"`
	RunCount     int32   `protobuf:"varint,6,opt,name=run_count,json=runCount,proto3" json:"run_count,omitempty"`
	CreatedAt    string  `protobuf:"bytes,7,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt    string  `protobuf:"bytes,8,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentTokenUsageInfo) Descriptor deprecated

func (*AgentTokenUsageInfo) Descriptor() ([]byte, []int)

Deprecated: Use AgentTokenUsageInfo.ProtoReflect.Descriptor instead.

func (*AgentTokenUsageInfo) GetCreatedAt

func (x *AgentTokenUsageInfo) GetCreatedAt() string

func (*AgentTokenUsageInfo) GetDate

func (x *AgentTokenUsageInfo) GetDate() string

func (*AgentTokenUsageInfo) GetId

func (x *AgentTokenUsageInfo) GetId() string

func (*AgentTokenUsageInfo) GetInputTokens

func (x *AgentTokenUsageInfo) GetInputTokens() int64

func (*AgentTokenUsageInfo) GetOutputTokens

func (x *AgentTokenUsageInfo) GetOutputTokens() int64

func (*AgentTokenUsageInfo) GetRunCount

func (x *AgentTokenUsageInfo) GetRunCount() int32

func (*AgentTokenUsageInfo) GetTotalCost

func (x *AgentTokenUsageInfo) GetTotalCost() float64

func (*AgentTokenUsageInfo) GetUpdatedAt

func (x *AgentTokenUsageInfo) GetUpdatedAt() string

func (*AgentTokenUsageInfo) ProtoMessage

func (*AgentTokenUsageInfo) ProtoMessage()

func (*AgentTokenUsageInfo) ProtoReflect

func (x *AgentTokenUsageInfo) ProtoReflect() protoreflect.Message

func (*AgentTokenUsageInfo) Reset

func (x *AgentTokenUsageInfo) Reset()

func (*AgentTokenUsageInfo) String

func (x *AgentTokenUsageInfo) String() string

type AgentToolConfig

type AgentToolConfig struct {
	ToolSlug      string `protobuf:"bytes,1,opt,name=tool_slug,json=toolSlug,proto3" json:"tool_slug,omitempty"`
	ConfigJson    string `protobuf:"bytes,2,opt,name=config_json,json=configJson,proto3" json:"config_json,omitempty"`
	SortOrder     int32  `protobuf:"varint,3,opt,name=sort_order,json=sortOrder,proto3" json:"sort_order,omitempty"`
	RequireReview bool   `protobuf:"varint,4,opt,name=require_review,json=requireReview,proto3" json:"require_review,omitempty"`
	// contains filtered or unexported fields
}

func (*AgentToolConfig) Descriptor deprecated

func (*AgentToolConfig) Descriptor() ([]byte, []int)

Deprecated: Use AgentToolConfig.ProtoReflect.Descriptor instead.

func (*AgentToolConfig) GetConfigJson

func (x *AgentToolConfig) GetConfigJson() string

func (*AgentToolConfig) GetRequireReview

func (x *AgentToolConfig) GetRequireReview() bool

func (*AgentToolConfig) GetSortOrder

func (x *AgentToolConfig) GetSortOrder() int32

func (*AgentToolConfig) GetToolSlug

func (x *AgentToolConfig) GetToolSlug() string

func (*AgentToolConfig) ProtoMessage

func (*AgentToolConfig) ProtoMessage()

func (*AgentToolConfig) ProtoReflect

func (x *AgentToolConfig) ProtoReflect() protoreflect.Message

func (*AgentToolConfig) Reset

func (x *AgentToolConfig) Reset()

func (*AgentToolConfig) String

func (x *AgentToolConfig) String() string

type AvailableModelInfo

type AvailableModelInfo struct {
	Code     string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
	Name     string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Provider string `protobuf:"bytes,3,opt,name=provider,proto3" json:"provider,omitempty"`
	// contains filtered or unexported fields
}

func (*AvailableModelInfo) Descriptor deprecated

func (*AvailableModelInfo) Descriptor() ([]byte, []int)

Deprecated: Use AvailableModelInfo.ProtoReflect.Descriptor instead.

func (*AvailableModelInfo) GetCode

func (x *AvailableModelInfo) GetCode() string

func (*AvailableModelInfo) GetName

func (x *AvailableModelInfo) GetName() string

func (*AvailableModelInfo) GetProvider

func (x *AvailableModelInfo) GetProvider() string

func (*AvailableModelInfo) ProtoMessage

func (*AvailableModelInfo) ProtoMessage()

func (*AvailableModelInfo) ProtoReflect

func (x *AvailableModelInfo) ProtoReflect() protoreflect.Message

func (*AvailableModelInfo) Reset

func (x *AvailableModelInfo) Reset()

func (*AvailableModelInfo) String

func (x *AvailableModelInfo) String() string

type AvailableToolInfo

type AvailableToolInfo struct {
	Slug                string   `protobuf:"bytes,1,opt,name=slug,proto3" json:"slug,omitempty"`
	DisplayName         string   `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	Description         string   `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	ConfigSchemaJson    string   `protobuf:"bytes,4,opt,name=config_schema_json,json=configSchemaJson,proto3" json:"config_schema_json,omitempty"`
	Category            string   `protobuf:"bytes,5,opt,name=category,proto3" json:"category,omitempty"`
	GroupId             string   `protobuf:"bytes,6,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
	GroupName           string   `protobuf:"bytes,7,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty"`
	RequiredPermissions []string `protobuf:"bytes,8,rep,name=required_permissions,json=requiredPermissions,proto3" json:"required_permissions,omitempty"`
	RequiredRoleType    string   `protobuf:"bytes,9,opt,name=required_role_type,json=requiredRoleType,proto3" json:"required_role_type,omitempty"`
	// mutating reports whether invoking the tool changes server state (any
	// endpoint-tool whose HTTP method is not GET). The UI defaults such tools to
	// requiring human review when they are attached to an agent.
	Mutating bool `protobuf:"varint,10,opt,name=mutating,proto3" json:"mutating,omitempty"`
	// contains filtered or unexported fields
}

func (*AvailableToolInfo) Descriptor deprecated

func (*AvailableToolInfo) Descriptor() ([]byte, []int)

Deprecated: Use AvailableToolInfo.ProtoReflect.Descriptor instead.

func (*AvailableToolInfo) GetCategory

func (x *AvailableToolInfo) GetCategory() string

func (*AvailableToolInfo) GetConfigSchemaJson

func (x *AvailableToolInfo) GetConfigSchemaJson() string

func (*AvailableToolInfo) GetDescription

func (x *AvailableToolInfo) GetDescription() string

func (*AvailableToolInfo) GetDisplayName

func (x *AvailableToolInfo) GetDisplayName() string

func (*AvailableToolInfo) GetGroupId

func (x *AvailableToolInfo) GetGroupId() string

func (*AvailableToolInfo) GetGroupName

func (x *AvailableToolInfo) GetGroupName() string

func (*AvailableToolInfo) GetMutating

func (x *AvailableToolInfo) GetMutating() bool

func (*AvailableToolInfo) GetRequiredPermissions

func (x *AvailableToolInfo) GetRequiredPermissions() []string

func (*AvailableToolInfo) GetRequiredRoleType

func (x *AvailableToolInfo) GetRequiredRoleType() string

func (*AvailableToolInfo) GetSlug

func (x *AvailableToolInfo) GetSlug() string

func (*AvailableToolInfo) ProtoMessage

func (*AvailableToolInfo) ProtoMessage()

func (*AvailableToolInfo) ProtoReflect

func (x *AvailableToolInfo) ProtoReflect() protoreflect.Message

func (*AvailableToolInfo) Reset

func (x *AvailableToolInfo) Reset()

func (*AvailableToolInfo) String

func (x *AvailableToolInfo) String() string

type BatchGetAgentMemoriesByIDsRequest

type BatchGetAgentMemoriesByIDsRequest struct {
	Ids []string `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

Batched read for the api-gateway resourcekit resolver.

func (*BatchGetAgentMemoriesByIDsRequest) Descriptor deprecated

func (*BatchGetAgentMemoriesByIDsRequest) Descriptor() ([]byte, []int)

Deprecated: Use BatchGetAgentMemoriesByIDsRequest.ProtoReflect.Descriptor instead.

func (*BatchGetAgentMemoriesByIDsRequest) GetIds

func (*BatchGetAgentMemoriesByIDsRequest) ProtoMessage

func (*BatchGetAgentMemoriesByIDsRequest) ProtoMessage()

func (*BatchGetAgentMemoriesByIDsRequest) ProtoReflect

func (*BatchGetAgentMemoriesByIDsRequest) Reset

func (*BatchGetAgentMemoriesByIDsRequest) String

type BatchGetAgentMemoriesByIDsResponse

type BatchGetAgentMemoriesByIDsResponse struct {
	Memories []*AgentMemoryInfo `protobuf:"bytes,1,rep,name=memories,proto3" json:"memories,omitempty"`
	// contains filtered or unexported fields
}

func (*BatchGetAgentMemoriesByIDsResponse) Descriptor deprecated

func (*BatchGetAgentMemoriesByIDsResponse) Descriptor() ([]byte, []int)

Deprecated: Use BatchGetAgentMemoriesByIDsResponse.ProtoReflect.Descriptor instead.

func (*BatchGetAgentMemoriesByIDsResponse) GetMemories

func (*BatchGetAgentMemoriesByIDsResponse) ProtoMessage

func (*BatchGetAgentMemoriesByIDsResponse) ProtoMessage()

func (*BatchGetAgentMemoriesByIDsResponse) ProtoReflect

func (*BatchGetAgentMemoriesByIDsResponse) Reset

func (*BatchGetAgentMemoriesByIDsResponse) String

type CancelRunRequest

type CancelRunRequest struct {
	AgentRunId string `protobuf:"bytes,1,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CancelRunRequest) Descriptor deprecated

func (*CancelRunRequest) Descriptor() ([]byte, []int)

Deprecated: Use CancelRunRequest.ProtoReflect.Descriptor instead.

func (*CancelRunRequest) GetAgentRunId

func (x *CancelRunRequest) GetAgentRunId() string

func (*CancelRunRequest) ProtoMessage

func (*CancelRunRequest) ProtoMessage()

func (*CancelRunRequest) ProtoReflect

func (x *CancelRunRequest) ProtoReflect() protoreflect.Message

func (*CancelRunRequest) Reset

func (x *CancelRunRequest) Reset()

func (*CancelRunRequest) String

func (x *CancelRunRequest) String() string

type CancelRunResponse

type CancelRunResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*CancelRunResponse) Descriptor deprecated

func (*CancelRunResponse) Descriptor() ([]byte, []int)

Deprecated: Use CancelRunResponse.ProtoReflect.Descriptor instead.

func (*CancelRunResponse) GetSuccess

func (x *CancelRunResponse) GetSuccess() bool

func (*CancelRunResponse) ProtoMessage

func (*CancelRunResponse) ProtoMessage()

func (*CancelRunResponse) ProtoReflect

func (x *CancelRunResponse) ProtoReflect() protoreflect.Message

func (*CancelRunResponse) Reset

func (x *CancelRunResponse) Reset()

func (*CancelRunResponse) String

func (x *CancelRunResponse) String() string

type ContinueRunRequest

type ContinueRunRequest struct {
	AgentRunId        string   `protobuf:"bytes,1,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	Message           string   `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	ApprovedToolSlugs []string `protobuf:"bytes,3,rep,name=approved_tool_slugs,json=approvedToolSlugs,proto3" json:"approved_tool_slugs,omitempty"`
	AllowedToolSlugs  []string `protobuf:"bytes,4,rep,name=allowed_tool_slugs,json=allowedToolSlugs,proto3" json:"allowed_tool_slugs,omitempty"`
	// Review-gated tools the human denied this resume. The run continues: each denied tool is answered with a synthetic "denied by user" result so the agent proceeds without it (instead of cancelling the run).
	RejectedToolSlugs []string `protobuf:"bytes,5,rep,name=rejected_tool_slugs,json=rejectedToolSlugs,proto3" json:"rejected_tool_slugs,omitempty"`
	// Per-call approval: the tool_use_ids of individual blocked calls the human approved. Unlike approved_tool_slugs (which approves EVERY pending call of that slug), these target one specific call, so two calls of the same slug with different inputs can be decided independently. The runner resolves each id to its recorded input via the tool_blocked events and matches the retried call on (slug + input).
	ApprovedToolCallIds []string `protobuf:"bytes,6,rep,name=approved_tool_call_ids,json=approvedToolCallIds,proto3" json:"approved_tool_call_ids,omitempty"`
	// Per-call rejection: the tool_use_ids of individual blocked calls the human denied. Same targeting semantics as approved_tool_call_ids.
	RejectedToolCallIds []string `protobuf:"bytes,7,rep,name=rejected_tool_call_ids,json=rejectedToolCallIds,proto3" json:"rejected_tool_call_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*ContinueRunRequest) Descriptor deprecated

func (*ContinueRunRequest) Descriptor() ([]byte, []int)

Deprecated: Use ContinueRunRequest.ProtoReflect.Descriptor instead.

func (*ContinueRunRequest) GetAgentRunId

func (x *ContinueRunRequest) GetAgentRunId() string

func (*ContinueRunRequest) GetAllowedToolSlugs

func (x *ContinueRunRequest) GetAllowedToolSlugs() []string

func (*ContinueRunRequest) GetApprovedToolCallIds

func (x *ContinueRunRequest) GetApprovedToolCallIds() []string

func (*ContinueRunRequest) GetApprovedToolSlugs

func (x *ContinueRunRequest) GetApprovedToolSlugs() []string

func (*ContinueRunRequest) GetMessage

func (x *ContinueRunRequest) GetMessage() string

func (*ContinueRunRequest) GetRejectedToolCallIds

func (x *ContinueRunRequest) GetRejectedToolCallIds() []string

func (*ContinueRunRequest) GetRejectedToolSlugs

func (x *ContinueRunRequest) GetRejectedToolSlugs() []string

func (*ContinueRunRequest) ProtoMessage

func (*ContinueRunRequest) ProtoMessage()

func (*ContinueRunRequest) ProtoReflect

func (x *ContinueRunRequest) ProtoReflect() protoreflect.Message

func (*ContinueRunRequest) Reset

func (x *ContinueRunRequest) Reset()

func (*ContinueRunRequest) String

func (x *ContinueRunRequest) String() string

type ContinueRunResponse

type ContinueRunResponse struct {
	AgentRunId string `protobuf:"bytes,1,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ContinueRunResponse) Descriptor deprecated

func (*ContinueRunResponse) Descriptor() ([]byte, []int)

Deprecated: Use ContinueRunResponse.ProtoReflect.Descriptor instead.

func (*ContinueRunResponse) GetAgentRunId

func (x *ContinueRunResponse) GetAgentRunId() string

func (*ContinueRunResponse) ProtoMessage

func (*ContinueRunResponse) ProtoMessage()

func (*ContinueRunResponse) ProtoReflect

func (x *ContinueRunResponse) ProtoReflect() protoreflect.Message

func (*ContinueRunResponse) Reset

func (x *ContinueRunResponse) Reset()

func (*ContinueRunResponse) String

func (x *ContinueRunResponse) String() string

type CreateAgentMemoryRequest

type CreateAgentMemoryRequest struct {
	Category     string  `protobuf:"bytes,1,opt,name=category,proto3" json:"category,omitempty"`
	Content      string  `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
	MetadataJson string  `protobuf:"bytes,3,opt,name=metadata_json,json=metadataJson,proto3" json:"metadata_json,omitempty"`
	EntityType   string  `protobuf:"bytes,4,opt,name=entity_type,json=entityType,proto3" json:"entity_type,omitempty"`
	EntityId     string  `protobuf:"bytes,5,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
	Importance   float64 `protobuf:"fixed64,6,opt,name=importance,proto3" json:"importance,omitempty"`
	ExpiresAt    string  `protobuf:"bytes,7,opt,name=expires_at,json=expiresAt,proto3" json:"expires_at,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAgentMemoryRequest) Descriptor deprecated

func (*CreateAgentMemoryRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateAgentMemoryRequest.ProtoReflect.Descriptor instead.

func (*CreateAgentMemoryRequest) GetCategory

func (x *CreateAgentMemoryRequest) GetCategory() string

func (*CreateAgentMemoryRequest) GetContent

func (x *CreateAgentMemoryRequest) GetContent() string

func (*CreateAgentMemoryRequest) GetEntityId

func (x *CreateAgentMemoryRequest) GetEntityId() string

func (*CreateAgentMemoryRequest) GetEntityType

func (x *CreateAgentMemoryRequest) GetEntityType() string

func (*CreateAgentMemoryRequest) GetExpiresAt

func (x *CreateAgentMemoryRequest) GetExpiresAt() string

func (*CreateAgentMemoryRequest) GetImportance

func (x *CreateAgentMemoryRequest) GetImportance() float64

func (*CreateAgentMemoryRequest) GetMetadataJson

func (x *CreateAgentMemoryRequest) GetMetadataJson() string

func (*CreateAgentMemoryRequest) ProtoMessage

func (*CreateAgentMemoryRequest) ProtoMessage()

func (*CreateAgentMemoryRequest) ProtoReflect

func (x *CreateAgentMemoryRequest) ProtoReflect() protoreflect.Message

func (*CreateAgentMemoryRequest) Reset

func (x *CreateAgentMemoryRequest) Reset()

func (*CreateAgentMemoryRequest) String

func (x *CreateAgentMemoryRequest) String() string

type CreateAgentMemoryResponse

type CreateAgentMemoryResponse struct {
	Memory *AgentMemoryInfo `protobuf:"bytes,1,opt,name=memory,proto3" json:"memory,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAgentMemoryResponse) Descriptor deprecated

func (*CreateAgentMemoryResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateAgentMemoryResponse.ProtoReflect.Descriptor instead.

func (*CreateAgentMemoryResponse) GetMemory

func (*CreateAgentMemoryResponse) ProtoMessage

func (*CreateAgentMemoryResponse) ProtoMessage()

func (*CreateAgentMemoryResponse) ProtoReflect

func (*CreateAgentMemoryResponse) Reset

func (x *CreateAgentMemoryResponse) Reset()

func (*CreateAgentMemoryResponse) String

func (x *CreateAgentMemoryResponse) String() string

type CreateCustomAgentRequest

type CreateCustomAgentRequest struct {
	Name         string             `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Slug         string             `protobuf:"bytes,2,opt,name=slug,proto3" json:"slug,omitempty"`
	Description  string             `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	CategoryCode string             `protobuf:"bytes,4,opt,name=category_code,json=categoryCode,proto3" json:"category_code,omitempty"`
	TriggerType  string             `protobuf:"bytes,5,opt,name=trigger_type,json=triggerType,proto3" json:"trigger_type,omitempty"`
	ConfigJson   string             `protobuf:"bytes,6,opt,name=config_json,json=configJson,proto3" json:"config_json,omitempty"`
	Tools        []*AgentToolConfig `protobuf:"bytes,7,rep,name=tools,proto3" json:"tools,omitempty"`
	Includes     []string           `protobuf:"bytes,8,rep,name=includes,proto3" json:"includes,omitempty"`
	RoleId       string             `protobuf:"bytes,9,opt,name=role_id,json=roleId,proto3" json:"role_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCustomAgentRequest) Descriptor deprecated

func (*CreateCustomAgentRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateCustomAgentRequest.ProtoReflect.Descriptor instead.

func (*CreateCustomAgentRequest) GetCategoryCode

func (x *CreateCustomAgentRequest) GetCategoryCode() string

func (*CreateCustomAgentRequest) GetConfigJson

func (x *CreateCustomAgentRequest) GetConfigJson() string

func (*CreateCustomAgentRequest) GetDescription

func (x *CreateCustomAgentRequest) GetDescription() string

func (*CreateCustomAgentRequest) GetIncludes

func (x *CreateCustomAgentRequest) GetIncludes() []string

func (*CreateCustomAgentRequest) GetName

func (x *CreateCustomAgentRequest) GetName() string

func (*CreateCustomAgentRequest) GetRoleId

func (x *CreateCustomAgentRequest) GetRoleId() string

func (*CreateCustomAgentRequest) GetSlug

func (x *CreateCustomAgentRequest) GetSlug() string

func (*CreateCustomAgentRequest) GetTools

func (x *CreateCustomAgentRequest) GetTools() []*AgentToolConfig

func (*CreateCustomAgentRequest) GetTriggerType

func (x *CreateCustomAgentRequest) GetTriggerType() string

func (*CreateCustomAgentRequest) ProtoMessage

func (*CreateCustomAgentRequest) ProtoMessage()

func (*CreateCustomAgentRequest) ProtoReflect

func (x *CreateCustomAgentRequest) ProtoReflect() protoreflect.Message

func (*CreateCustomAgentRequest) Reset

func (x *CreateCustomAgentRequest) Reset()

func (*CreateCustomAgentRequest) String

func (x *CreateCustomAgentRequest) String() string

type CreateCustomAgentResponse

type CreateCustomAgentResponse struct {
	Agent *AgentDefinitionInfo `protobuf:"bytes,1,opt,name=agent,proto3" json:"agent,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCustomAgentResponse) Descriptor deprecated

func (*CreateCustomAgentResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateCustomAgentResponse.ProtoReflect.Descriptor instead.

func (*CreateCustomAgentResponse) GetAgent

func (*CreateCustomAgentResponse) ProtoMessage

func (*CreateCustomAgentResponse) ProtoMessage()

func (*CreateCustomAgentResponse) ProtoReflect

func (*CreateCustomAgentResponse) Reset

func (x *CreateCustomAgentResponse) Reset()

func (*CreateCustomAgentResponse) String

func (x *CreateCustomAgentResponse) String() string

type DeleteAgentMemoryRequest

type DeleteAgentMemoryRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteAgentMemoryRequest) Descriptor deprecated

func (*DeleteAgentMemoryRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteAgentMemoryRequest.ProtoReflect.Descriptor instead.

func (*DeleteAgentMemoryRequest) GetId

func (x *DeleteAgentMemoryRequest) GetId() string

func (*DeleteAgentMemoryRequest) ProtoMessage

func (*DeleteAgentMemoryRequest) ProtoMessage()

func (*DeleteAgentMemoryRequest) ProtoReflect

func (x *DeleteAgentMemoryRequest) ProtoReflect() protoreflect.Message

func (*DeleteAgentMemoryRequest) Reset

func (x *DeleteAgentMemoryRequest) Reset()

func (*DeleteAgentMemoryRequest) String

func (x *DeleteAgentMemoryRequest) String() string

type DeleteAgentMemoryResponse

type DeleteAgentMemoryResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteAgentMemoryResponse) Descriptor deprecated

func (*DeleteAgentMemoryResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteAgentMemoryResponse.ProtoReflect.Descriptor instead.

func (*DeleteAgentMemoryResponse) GetSuccess

func (x *DeleteAgentMemoryResponse) GetSuccess() bool

func (*DeleteAgentMemoryResponse) ProtoMessage

func (*DeleteAgentMemoryResponse) ProtoMessage()

func (*DeleteAgentMemoryResponse) ProtoReflect

func (*DeleteAgentMemoryResponse) Reset

func (x *DeleteAgentMemoryResponse) Reset()

func (*DeleteAgentMemoryResponse) String

func (x *DeleteAgentMemoryResponse) String() string

type DeleteCustomAgentRequest

type DeleteCustomAgentRequest struct {
	AgentDefinitionId string `protobuf:"bytes,1,opt,name=agent_definition_id,json=agentDefinitionId,proto3" json:"agent_definition_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteCustomAgentRequest) Descriptor deprecated

func (*DeleteCustomAgentRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteCustomAgentRequest.ProtoReflect.Descriptor instead.

func (*DeleteCustomAgentRequest) GetAgentDefinitionId

func (x *DeleteCustomAgentRequest) GetAgentDefinitionId() string

func (*DeleteCustomAgentRequest) ProtoMessage

func (*DeleteCustomAgentRequest) ProtoMessage()

func (*DeleteCustomAgentRequest) ProtoReflect

func (x *DeleteCustomAgentRequest) ProtoReflect() protoreflect.Message

func (*DeleteCustomAgentRequest) Reset

func (x *DeleteCustomAgentRequest) Reset()

func (*DeleteCustomAgentRequest) String

func (x *DeleteCustomAgentRequest) String() string

type DeleteCustomAgentResponse

type DeleteCustomAgentResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteCustomAgentResponse) Descriptor deprecated

func (*DeleteCustomAgentResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteCustomAgentResponse.ProtoReflect.Descriptor instead.

func (*DeleteCustomAgentResponse) GetSuccess

func (x *DeleteCustomAgentResponse) GetSuccess() bool

func (*DeleteCustomAgentResponse) ProtoMessage

func (*DeleteCustomAgentResponse) ProtoMessage()

func (*DeleteCustomAgentResponse) ProtoReflect

func (*DeleteCustomAgentResponse) Reset

func (x *DeleteCustomAgentResponse) Reset()

func (*DeleteCustomAgentResponse) String

func (x *DeleteCustomAgentResponse) String() string

type GetAgentDefinitionRequest

type GetAgentDefinitionRequest struct {
	AgentDefinitionId string   `protobuf:"bytes,1,opt,name=agent_definition_id,json=agentDefinitionId,proto3" json:"agent_definition_id,omitempty"`
	Includes          []string `protobuf:"bytes,2,rep,name=includes,proto3" json:"includes,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAgentDefinitionRequest) Descriptor deprecated

func (*GetAgentDefinitionRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAgentDefinitionRequest.ProtoReflect.Descriptor instead.

func (*GetAgentDefinitionRequest) GetAgentDefinitionId

func (x *GetAgentDefinitionRequest) GetAgentDefinitionId() string

func (*GetAgentDefinitionRequest) GetIncludes

func (x *GetAgentDefinitionRequest) GetIncludes() []string

func (*GetAgentDefinitionRequest) ProtoMessage

func (*GetAgentDefinitionRequest) ProtoMessage()

func (*GetAgentDefinitionRequest) ProtoReflect

func (*GetAgentDefinitionRequest) Reset

func (x *GetAgentDefinitionRequest) Reset()

func (*GetAgentDefinitionRequest) String

func (x *GetAgentDefinitionRequest) String() string

type GetAgentDefinitionResponse

type GetAgentDefinitionResponse struct {
	Agent *AgentDefinitionInfo `protobuf:"bytes,1,opt,name=agent,proto3" json:"agent,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAgentDefinitionResponse) Descriptor deprecated

func (*GetAgentDefinitionResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetAgentDefinitionResponse.ProtoReflect.Descriptor instead.

func (*GetAgentDefinitionResponse) GetAgent

func (*GetAgentDefinitionResponse) ProtoMessage

func (*GetAgentDefinitionResponse) ProtoMessage()

func (*GetAgentDefinitionResponse) ProtoReflect

func (*GetAgentDefinitionResponse) Reset

func (x *GetAgentDefinitionResponse) Reset()

func (*GetAgentDefinitionResponse) String

func (x *GetAgentDefinitionResponse) String() string

type GetAgentMemoryRequest

type GetAgentMemoryRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAgentMemoryRequest) Descriptor deprecated

func (*GetAgentMemoryRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAgentMemoryRequest.ProtoReflect.Descriptor instead.

func (*GetAgentMemoryRequest) GetId

func (x *GetAgentMemoryRequest) GetId() string

func (*GetAgentMemoryRequest) ProtoMessage

func (*GetAgentMemoryRequest) ProtoMessage()

func (*GetAgentMemoryRequest) ProtoReflect

func (x *GetAgentMemoryRequest) ProtoReflect() protoreflect.Message

func (*GetAgentMemoryRequest) Reset

func (x *GetAgentMemoryRequest) Reset()

func (*GetAgentMemoryRequest) String

func (x *GetAgentMemoryRequest) String() string

type GetAgentMemoryResponse

type GetAgentMemoryResponse struct {
	Memory *AgentMemoryInfo `protobuf:"bytes,1,opt,name=memory,proto3" json:"memory,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAgentMemoryResponse) Descriptor deprecated

func (*GetAgentMemoryResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetAgentMemoryResponse.ProtoReflect.Descriptor instead.

func (*GetAgentMemoryResponse) GetMemory

func (x *GetAgentMemoryResponse) GetMemory() *AgentMemoryInfo

func (*GetAgentMemoryResponse) ProtoMessage

func (*GetAgentMemoryResponse) ProtoMessage()

func (*GetAgentMemoryResponse) ProtoReflect

func (x *GetAgentMemoryResponse) ProtoReflect() protoreflect.Message

func (*GetAgentMemoryResponse) Reset

func (x *GetAgentMemoryResponse) Reset()

func (*GetAgentMemoryResponse) String

func (x *GetAgentMemoryResponse) String() string

type GetRunRequest

type GetRunRequest struct {
	AgentRunId string   `protobuf:"bytes,1,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	Includes   []string `protobuf:"bytes,2,rep,name=includes,proto3" json:"includes,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRunRequest) Descriptor deprecated

func (*GetRunRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetRunRequest.ProtoReflect.Descriptor instead.

func (*GetRunRequest) GetAgentRunId

func (x *GetRunRequest) GetAgentRunId() string

func (*GetRunRequest) GetIncludes

func (x *GetRunRequest) GetIncludes() []string

func (*GetRunRequest) ProtoMessage

func (*GetRunRequest) ProtoMessage()

func (*GetRunRequest) ProtoReflect

func (x *GetRunRequest) ProtoReflect() protoreflect.Message

func (*GetRunRequest) Reset

func (x *GetRunRequest) Reset()

func (*GetRunRequest) String

func (x *GetRunRequest) String() string

type GetRunResponse

type GetRunResponse struct {
	Run *AgentRunInfo `protobuf:"bytes,1,opt,name=run,proto3" json:"run,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRunResponse) Descriptor deprecated

func (*GetRunResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetRunResponse.ProtoReflect.Descriptor instead.

func (*GetRunResponse) GetRun

func (x *GetRunResponse) GetRun() *AgentRunInfo

func (*GetRunResponse) ProtoMessage

func (*GetRunResponse) ProtoMessage()

func (*GetRunResponse) ProtoReflect

func (x *GetRunResponse) ProtoReflect() protoreflect.Message

func (*GetRunResponse) Reset

func (x *GetRunResponse) Reset()

func (*GetRunResponse) String

func (x *GetRunResponse) String() string

type GetRunStatusRequest

type GetRunStatusRequest struct {
	AgentRunId string `protobuf:"bytes,1,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRunStatusRequest) Descriptor deprecated

func (*GetRunStatusRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetRunStatusRequest.ProtoReflect.Descriptor instead.

func (*GetRunStatusRequest) GetAgentRunId

func (x *GetRunStatusRequest) GetAgentRunId() string

func (*GetRunStatusRequest) ProtoMessage

func (*GetRunStatusRequest) ProtoMessage()

func (*GetRunStatusRequest) ProtoReflect

func (x *GetRunStatusRequest) ProtoReflect() protoreflect.Message

func (*GetRunStatusRequest) Reset

func (x *GetRunStatusRequest) Reset()

func (*GetRunStatusRequest) String

func (x *GetRunStatusRequest) String() string

type GetRunStatusResponse

type GetRunStatusResponse struct {
	AgentRunId    string `protobuf:"bytes,1,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	StatusCode    string `protobuf:"bytes,2,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	OutputSummary string `protobuf:"bytes,3,opt,name=output_summary,json=outputSummary,proto3" json:"output_summary,omitempty"`
	TotalTokens   int32  `protobuf:"varint,4,opt,name=total_tokens,json=totalTokens,proto3" json:"total_tokens,omitempty"`
	DurationMs    int32  `protobuf:"varint,5,opt,name=duration_ms,json=durationMs,proto3" json:"duration_ms,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRunStatusResponse) Descriptor deprecated

func (*GetRunStatusResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetRunStatusResponse.ProtoReflect.Descriptor instead.

func (*GetRunStatusResponse) GetAgentRunId

func (x *GetRunStatusResponse) GetAgentRunId() string

func (*GetRunStatusResponse) GetDurationMs

func (x *GetRunStatusResponse) GetDurationMs() int32

func (*GetRunStatusResponse) GetOutputSummary

func (x *GetRunStatusResponse) GetOutputSummary() string

func (*GetRunStatusResponse) GetStatusCode

func (x *GetRunStatusResponse) GetStatusCode() string

func (*GetRunStatusResponse) GetTotalTokens

func (x *GetRunStatusResponse) GetTotalTokens() int32

func (*GetRunStatusResponse) ProtoMessage

func (*GetRunStatusResponse) ProtoMessage()

func (*GetRunStatusResponse) ProtoReflect

func (x *GetRunStatusResponse) ProtoReflect() protoreflect.Message

func (*GetRunStatusResponse) Reset

func (x *GetRunStatusResponse) Reset()

func (*GetRunStatusResponse) String

func (x *GetRunStatusResponse) String() string

type ListAgentDefinitionsRequest

type ListAgentDefinitionsRequest struct {
	Includes        []string `protobuf:"bytes,1,rep,name=includes,proto3" json:"includes,omitempty"`
	Statuses        []string `protobuf:"bytes,2,rep,name=statuses,proto3" json:"statuses,omitempty"`
	DefinitionTypes []string `protobuf:"bytes,3,rep,name=definition_types,json=definitionTypes,proto3" json:"definition_types,omitempty"`
	TriggerTypes    []string `protobuf:"bytes,4,rep,name=trigger_types,json=triggerTypes,proto3" json:"trigger_types,omitempty"`
	Cursor          *string  `protobuf:"bytes,5,opt,name=cursor,proto3,oneof" json:"cursor,omitempty"`
	Limit           int32    `protobuf:"varint,6,opt,name=limit,proto3" json:"limit,omitempty"`
	Query           *string  `protobuf:"bytes,7,opt,name=query,proto3,oneof" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAgentDefinitionsRequest) Descriptor deprecated

func (*ListAgentDefinitionsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListAgentDefinitionsRequest.ProtoReflect.Descriptor instead.

func (*ListAgentDefinitionsRequest) GetCursor

func (x *ListAgentDefinitionsRequest) GetCursor() string

func (*ListAgentDefinitionsRequest) GetDefinitionTypes

func (x *ListAgentDefinitionsRequest) GetDefinitionTypes() []string

func (*ListAgentDefinitionsRequest) GetIncludes

func (x *ListAgentDefinitionsRequest) GetIncludes() []string

func (*ListAgentDefinitionsRequest) GetLimit

func (x *ListAgentDefinitionsRequest) GetLimit() int32

func (*ListAgentDefinitionsRequest) GetQuery

func (x *ListAgentDefinitionsRequest) GetQuery() string

func (*ListAgentDefinitionsRequest) GetStatuses

func (x *ListAgentDefinitionsRequest) GetStatuses() []string

func (*ListAgentDefinitionsRequest) GetTriggerTypes

func (x *ListAgentDefinitionsRequest) GetTriggerTypes() []string

func (*ListAgentDefinitionsRequest) ProtoMessage

func (*ListAgentDefinitionsRequest) ProtoMessage()

func (*ListAgentDefinitionsRequest) ProtoReflect

func (*ListAgentDefinitionsRequest) Reset

func (x *ListAgentDefinitionsRequest) Reset()

func (*ListAgentDefinitionsRequest) String

func (x *ListAgentDefinitionsRequest) String() string

type ListAgentDefinitionsResponse

type ListAgentDefinitionsResponse struct {
	Agents   []*AgentDefinitionInfo `protobuf:"bytes,1,rep,name=agents,proto3" json:"agents,omitempty"`
	PageInfo *PageInfo              `protobuf:"bytes,2,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAgentDefinitionsResponse) Descriptor deprecated

func (*ListAgentDefinitionsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListAgentDefinitionsResponse.ProtoReflect.Descriptor instead.

func (*ListAgentDefinitionsResponse) GetAgents

func (*ListAgentDefinitionsResponse) GetPageInfo

func (x *ListAgentDefinitionsResponse) GetPageInfo() *PageInfo

func (*ListAgentDefinitionsResponse) ProtoMessage

func (*ListAgentDefinitionsResponse) ProtoMessage()

func (*ListAgentDefinitionsResponse) ProtoReflect

func (*ListAgentDefinitionsResponse) Reset

func (x *ListAgentDefinitionsResponse) Reset()

func (*ListAgentDefinitionsResponse) String

type ListAgentMemoriesRequest

type ListAgentMemoriesRequest struct {
	Cursor     *string `protobuf:"bytes,1,opt,name=cursor,proto3,oneof" json:"cursor,omitempty"`
	Limit      int32   `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Category   string  `protobuf:"bytes,3,opt,name=category,proto3" json:"category,omitempty"`
	EntityType string  `protobuf:"bytes,4,opt,name=entity_type,json=entityType,proto3" json:"entity_type,omitempty"`
	Query      *string `protobuf:"bytes,5,opt,name=query,proto3,oneof" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAgentMemoriesRequest) Descriptor deprecated

func (*ListAgentMemoriesRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListAgentMemoriesRequest.ProtoReflect.Descriptor instead.

func (*ListAgentMemoriesRequest) GetCategory

func (x *ListAgentMemoriesRequest) GetCategory() string

func (*ListAgentMemoriesRequest) GetCursor

func (x *ListAgentMemoriesRequest) GetCursor() string

func (*ListAgentMemoriesRequest) GetEntityType

func (x *ListAgentMemoriesRequest) GetEntityType() string

func (*ListAgentMemoriesRequest) GetLimit

func (x *ListAgentMemoriesRequest) GetLimit() int32

func (*ListAgentMemoriesRequest) GetQuery

func (x *ListAgentMemoriesRequest) GetQuery() string

func (*ListAgentMemoriesRequest) ProtoMessage

func (*ListAgentMemoriesRequest) ProtoMessage()

func (*ListAgentMemoriesRequest) ProtoReflect

func (x *ListAgentMemoriesRequest) ProtoReflect() protoreflect.Message

func (*ListAgentMemoriesRequest) Reset

func (x *ListAgentMemoriesRequest) Reset()

func (*ListAgentMemoriesRequest) String

func (x *ListAgentMemoriesRequest) String() string

type ListAgentMemoriesResponse

type ListAgentMemoriesResponse struct {
	Memories []*AgentMemoryInfo `protobuf:"bytes,1,rep,name=memories,proto3" json:"memories,omitempty"`
	PageInfo *PageInfo          `protobuf:"bytes,2,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAgentMemoriesResponse) Descriptor deprecated

func (*ListAgentMemoriesResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListAgentMemoriesResponse.ProtoReflect.Descriptor instead.

func (*ListAgentMemoriesResponse) GetMemories

func (x *ListAgentMemoriesResponse) GetMemories() []*AgentMemoryInfo

func (*ListAgentMemoriesResponse) GetPageInfo

func (x *ListAgentMemoriesResponse) GetPageInfo() *PageInfo

func (*ListAgentMemoriesResponse) ProtoMessage

func (*ListAgentMemoriesResponse) ProtoMessage()

func (*ListAgentMemoriesResponse) ProtoReflect

func (*ListAgentMemoriesResponse) Reset

func (x *ListAgentMemoriesResponse) Reset()

func (*ListAgentMemoriesResponse) String

func (x *ListAgentMemoriesResponse) String() string

type ListAvailableModelsRequest

type ListAvailableModelsRequest struct {
	// contains filtered or unexported fields
}

func (*ListAvailableModelsRequest) Descriptor deprecated

func (*ListAvailableModelsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListAvailableModelsRequest.ProtoReflect.Descriptor instead.

func (*ListAvailableModelsRequest) ProtoMessage

func (*ListAvailableModelsRequest) ProtoMessage()

func (*ListAvailableModelsRequest) ProtoReflect

func (*ListAvailableModelsRequest) Reset

func (x *ListAvailableModelsRequest) Reset()

func (*ListAvailableModelsRequest) String

func (x *ListAvailableModelsRequest) String() string

type ListAvailableModelsResponse

type ListAvailableModelsResponse struct {
	Models []*AvailableModelInfo `protobuf:"bytes,1,rep,name=models,proto3" json:"models,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAvailableModelsResponse) Descriptor deprecated

func (*ListAvailableModelsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListAvailableModelsResponse.ProtoReflect.Descriptor instead.

func (*ListAvailableModelsResponse) GetModels

func (*ListAvailableModelsResponse) ProtoMessage

func (*ListAvailableModelsResponse) ProtoMessage()

func (*ListAvailableModelsResponse) ProtoReflect

func (*ListAvailableModelsResponse) Reset

func (x *ListAvailableModelsResponse) Reset()

func (*ListAvailableModelsResponse) String

func (x *ListAvailableModelsResponse) String() string

type ListAvailableToolsRequest

type ListAvailableToolsRequest struct {
	Cursor           *string `protobuf:"bytes,1,opt,name=cursor,proto3,oneof" json:"cursor,omitempty"`
	Limit            int32   `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Query            *string `protobuf:"bytes,3,opt,name=query,proto3,oneof" json:"query,omitempty"`
	PaginateResource *string `protobuf:"bytes,4,opt,name=paginate_resource,json=paginateResource,proto3,oneof" json:"paginate_resource,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAvailableToolsRequest) Descriptor deprecated

func (*ListAvailableToolsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListAvailableToolsRequest.ProtoReflect.Descriptor instead.

func (*ListAvailableToolsRequest) GetCursor

func (x *ListAvailableToolsRequest) GetCursor() string

func (*ListAvailableToolsRequest) GetLimit

func (x *ListAvailableToolsRequest) GetLimit() int32

func (*ListAvailableToolsRequest) GetPaginateResource

func (x *ListAvailableToolsRequest) GetPaginateResource() string

func (*ListAvailableToolsRequest) GetQuery

func (x *ListAvailableToolsRequest) GetQuery() string

func (*ListAvailableToolsRequest) ProtoMessage

func (*ListAvailableToolsRequest) ProtoMessage()

func (*ListAvailableToolsRequest) ProtoReflect

func (*ListAvailableToolsRequest) Reset

func (x *ListAvailableToolsRequest) Reset()

func (*ListAvailableToolsRequest) String

func (x *ListAvailableToolsRequest) String() string

type ListAvailableToolsResponse

type ListAvailableToolsResponse struct {
	Tools  []*AvailableToolInfo `protobuf:"bytes,1,rep,name=tools,proto3" json:"tools,omitempty"`
	Groups []*ToolGroupInfo     `protobuf:"bytes,2,rep,name=groups,proto3" json:"groups,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAvailableToolsResponse) Descriptor deprecated

func (*ListAvailableToolsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListAvailableToolsResponse.ProtoReflect.Descriptor instead.

func (*ListAvailableToolsResponse) GetGroups

func (x *ListAvailableToolsResponse) GetGroups() []*ToolGroupInfo

func (*ListAvailableToolsResponse) GetTools

func (*ListAvailableToolsResponse) ProtoMessage

func (*ListAvailableToolsResponse) ProtoMessage()

func (*ListAvailableToolsResponse) ProtoReflect

func (*ListAvailableToolsResponse) Reset

func (x *ListAvailableToolsResponse) Reset()

func (*ListAvailableToolsResponse) String

func (x *ListAvailableToolsResponse) String() string

type ListRunsRequest

type ListRunsRequest struct {
	StatusCode        string   `protobuf:"bytes,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	AgentDefinitionId string   `protobuf:"bytes,2,opt,name=agent_definition_id,json=agentDefinitionId,proto3" json:"agent_definition_id,omitempty"`
	Limit             int32    `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
	Cursor            *string  `protobuf:"bytes,4,opt,name=cursor,proto3,oneof" json:"cursor,omitempty"`
	Includes          []string `protobuf:"bytes,5,rep,name=includes,proto3" json:"includes,omitempty"`
	Query             *string  `protobuf:"bytes,6,opt,name=query,proto3,oneof" json:"query,omitempty"`
	// contains filtered or unexported fields
}

func (*ListRunsRequest) Descriptor deprecated

func (*ListRunsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListRunsRequest.ProtoReflect.Descriptor instead.

func (*ListRunsRequest) GetAgentDefinitionId

func (x *ListRunsRequest) GetAgentDefinitionId() string

func (*ListRunsRequest) GetCursor

func (x *ListRunsRequest) GetCursor() string

func (*ListRunsRequest) GetIncludes

func (x *ListRunsRequest) GetIncludes() []string

func (*ListRunsRequest) GetLimit

func (x *ListRunsRequest) GetLimit() int32

func (*ListRunsRequest) GetQuery

func (x *ListRunsRequest) GetQuery() string

func (*ListRunsRequest) GetStatusCode

func (x *ListRunsRequest) GetStatusCode() string

func (*ListRunsRequest) ProtoMessage

func (*ListRunsRequest) ProtoMessage()

func (*ListRunsRequest) ProtoReflect

func (x *ListRunsRequest) ProtoReflect() protoreflect.Message

func (*ListRunsRequest) Reset

func (x *ListRunsRequest) Reset()

func (*ListRunsRequest) String

func (x *ListRunsRequest) String() string

type ListRunsResponse

type ListRunsResponse struct {
	Runs     []*AgentRunInfo `protobuf:"bytes,1,rep,name=runs,proto3" json:"runs,omitempty"`
	PageInfo *PageInfo       `protobuf:"bytes,2,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
	// contains filtered or unexported fields
}

func (*ListRunsResponse) Descriptor deprecated

func (*ListRunsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListRunsResponse.ProtoReflect.Descriptor instead.

func (*ListRunsResponse) GetPageInfo

func (x *ListRunsResponse) GetPageInfo() *PageInfo

func (*ListRunsResponse) GetRuns

func (x *ListRunsResponse) GetRuns() []*AgentRunInfo

func (*ListRunsResponse) ProtoMessage

func (*ListRunsResponse) ProtoMessage()

func (*ListRunsResponse) ProtoReflect

func (x *ListRunsResponse) ProtoReflect() protoreflect.Message

func (*ListRunsResponse) Reset

func (x *ListRunsResponse) Reset()

func (*ListRunsResponse) String

func (x *ListRunsResponse) String() string

type ListTokenUsageRequest

type ListTokenUsageRequest struct {
	Days   int32   `protobuf:"varint,1,opt,name=days,proto3" json:"days,omitempty"`
	Limit  int32   `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	Cursor *string `protobuf:"bytes,3,opt,name=cursor,proto3,oneof" json:"cursor,omitempty"`
	// contains filtered or unexported fields
}

func (*ListTokenUsageRequest) Descriptor deprecated

func (*ListTokenUsageRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListTokenUsageRequest.ProtoReflect.Descriptor instead.

func (*ListTokenUsageRequest) GetCursor

func (x *ListTokenUsageRequest) GetCursor() string

func (*ListTokenUsageRequest) GetDays

func (x *ListTokenUsageRequest) GetDays() int32

func (*ListTokenUsageRequest) GetLimit

func (x *ListTokenUsageRequest) GetLimit() int32

func (*ListTokenUsageRequest) ProtoMessage

func (*ListTokenUsageRequest) ProtoMessage()

func (*ListTokenUsageRequest) ProtoReflect

func (x *ListTokenUsageRequest) ProtoReflect() protoreflect.Message

func (*ListTokenUsageRequest) Reset

func (x *ListTokenUsageRequest) Reset()

func (*ListTokenUsageRequest) String

func (x *ListTokenUsageRequest) String() string

type ListTokenUsageResponse

type ListTokenUsageResponse struct {
	Usage    []*AgentTokenUsageInfo `protobuf:"bytes,1,rep,name=usage,proto3" json:"usage,omitempty"`
	PageInfo *PageInfo              `protobuf:"bytes,2,opt,name=page_info,json=pageInfo,proto3" json:"page_info,omitempty"`
	// contains filtered or unexported fields
}

func (*ListTokenUsageResponse) Descriptor deprecated

func (*ListTokenUsageResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListTokenUsageResponse.ProtoReflect.Descriptor instead.

func (*ListTokenUsageResponse) GetPageInfo

func (x *ListTokenUsageResponse) GetPageInfo() *PageInfo

func (*ListTokenUsageResponse) GetUsage

func (*ListTokenUsageResponse) ProtoMessage

func (*ListTokenUsageResponse) ProtoMessage()

func (*ListTokenUsageResponse) ProtoReflect

func (x *ListTokenUsageResponse) ProtoReflect() protoreflect.Message

func (*ListTokenUsageResponse) Reset

func (x *ListTokenUsageResponse) Reset()

func (*ListTokenUsageResponse) String

func (x *ListTokenUsageResponse) String() string

type PageInfo

type PageInfo struct {
	NextCursor  *string `protobuf:"bytes,1,opt,name=next_cursor,json=nextCursor,proto3,oneof" json:"next_cursor,omitempty"`
	PrevCursor  *string `protobuf:"bytes,2,opt,name=prev_cursor,json=prevCursor,proto3,oneof" json:"prev_cursor,omitempty"`
	HasNextPage bool    `protobuf:"varint,3,opt,name=has_next_page,json=hasNextPage,proto3" json:"has_next_page,omitempty"`
	HasPrevPage bool    `protobuf:"varint,4,opt,name=has_prev_page,json=hasPrevPage,proto3" json:"has_prev_page,omitempty"`
	// contains filtered or unexported fields
}

func (*PageInfo) Descriptor deprecated

func (*PageInfo) Descriptor() ([]byte, []int)

Deprecated: Use PageInfo.ProtoReflect.Descriptor instead.

func (*PageInfo) GetHasNextPage

func (x *PageInfo) GetHasNextPage() bool

func (*PageInfo) GetHasPrevPage

func (x *PageInfo) GetHasPrevPage() bool

func (*PageInfo) GetNextCursor

func (x *PageInfo) GetNextCursor() string

func (*PageInfo) GetPrevCursor

func (x *PageInfo) GetPrevCursor() string

func (*PageInfo) ProtoMessage

func (*PageInfo) ProtoMessage()

func (*PageInfo) ProtoReflect

func (x *PageInfo) ProtoReflect() protoreflect.Message

func (*PageInfo) Reset

func (x *PageInfo) Reset()

func (*PageInfo) String

func (x *PageInfo) String() string

type RetryRunRequest

type RetryRunRequest struct {
	AgentRunId string `protobuf:"bytes,1,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RetryRunRequest) Descriptor deprecated

func (*RetryRunRequest) Descriptor() ([]byte, []int)

Deprecated: Use RetryRunRequest.ProtoReflect.Descriptor instead.

func (*RetryRunRequest) GetAgentRunId

func (x *RetryRunRequest) GetAgentRunId() string

func (*RetryRunRequest) ProtoMessage

func (*RetryRunRequest) ProtoMessage()

func (*RetryRunRequest) ProtoReflect

func (x *RetryRunRequest) ProtoReflect() protoreflect.Message

func (*RetryRunRequest) Reset

func (x *RetryRunRequest) Reset()

func (*RetryRunRequest) String

func (x *RetryRunRequest) String() string

type RetryRunResponse

type RetryRunResponse struct {
	AgentRunId string `protobuf:"bytes,1,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RetryRunResponse) Descriptor deprecated

func (*RetryRunResponse) Descriptor() ([]byte, []int)

Deprecated: Use RetryRunResponse.ProtoReflect.Descriptor instead.

func (*RetryRunResponse) GetAgentRunId

func (x *RetryRunResponse) GetAgentRunId() string

func (*RetryRunResponse) ProtoMessage

func (*RetryRunResponse) ProtoMessage()

func (*RetryRunResponse) ProtoReflect

func (x *RetryRunResponse) ProtoReflect() protoreflect.Message

func (*RetryRunResponse) Reset

func (x *RetryRunResponse) Reset()

func (*RetryRunResponse) String

func (x *RetryRunResponse) String() string

type ToolGroupInfo

type ToolGroupInfo struct {
	Id          string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Slug        string `protobuf:"bytes,4,opt,name=slug,proto3" json:"slug,omitempty"`
	Icon        string `protobuf:"bytes,5,opt,name=icon,proto3" json:"icon,omitempty"`
	SortOrder   int32  `protobuf:"varint,6,opt,name=sort_order,json=sortOrder,proto3" json:"sort_order,omitempty"`
	// contains filtered or unexported fields
}

func (*ToolGroupInfo) Descriptor deprecated

func (*ToolGroupInfo) Descriptor() ([]byte, []int)

Deprecated: Use ToolGroupInfo.ProtoReflect.Descriptor instead.

func (*ToolGroupInfo) GetDescription

func (x *ToolGroupInfo) GetDescription() string

func (*ToolGroupInfo) GetIcon

func (x *ToolGroupInfo) GetIcon() string

func (*ToolGroupInfo) GetId

func (x *ToolGroupInfo) GetId() string

func (*ToolGroupInfo) GetName

func (x *ToolGroupInfo) GetName() string

func (*ToolGroupInfo) GetSlug

func (x *ToolGroupInfo) GetSlug() string

func (*ToolGroupInfo) GetSortOrder

func (x *ToolGroupInfo) GetSortOrder() int32

func (*ToolGroupInfo) ProtoMessage

func (*ToolGroupInfo) ProtoMessage()

func (*ToolGroupInfo) ProtoReflect

func (x *ToolGroupInfo) ProtoReflect() protoreflect.Message

func (*ToolGroupInfo) Reset

func (x *ToolGroupInfo) Reset()

func (*ToolGroupInfo) String

func (x *ToolGroupInfo) String() string

type TriggerRunRequest

type TriggerRunRequest struct {
	AgentDefinitionCode string `protobuf:"bytes,1,opt,name=agent_definition_code,json=agentDefinitionCode,proto3" json:"agent_definition_code,omitempty"`
	Input               string `protobuf:"bytes,2,opt,name=input,proto3" json:"input,omitempty"`
	// contains filtered or unexported fields
}

func (*TriggerRunRequest) Descriptor deprecated

func (*TriggerRunRequest) Descriptor() ([]byte, []int)

Deprecated: Use TriggerRunRequest.ProtoReflect.Descriptor instead.

func (*TriggerRunRequest) GetAgentDefinitionCode

func (x *TriggerRunRequest) GetAgentDefinitionCode() string

func (*TriggerRunRequest) GetInput

func (x *TriggerRunRequest) GetInput() string

func (*TriggerRunRequest) ProtoMessage

func (*TriggerRunRequest) ProtoMessage()

func (*TriggerRunRequest) ProtoReflect

func (x *TriggerRunRequest) ProtoReflect() protoreflect.Message

func (*TriggerRunRequest) Reset

func (x *TriggerRunRequest) Reset()

func (*TriggerRunRequest) String

func (x *TriggerRunRequest) String() string

type TriggerRunResponse

type TriggerRunResponse struct {
	AgentRunId string `protobuf:"bytes,1,opt,name=agent_run_id,json=agentRunId,proto3" json:"agent_run_id,omitempty"`
	// contains filtered or unexported fields
}

func (*TriggerRunResponse) Descriptor deprecated

func (*TriggerRunResponse) Descriptor() ([]byte, []int)

Deprecated: Use TriggerRunResponse.ProtoReflect.Descriptor instead.

func (*TriggerRunResponse) GetAgentRunId

func (x *TriggerRunResponse) GetAgentRunId() string

func (*TriggerRunResponse) ProtoMessage

func (*TriggerRunResponse) ProtoMessage()

func (*TriggerRunResponse) ProtoReflect

func (x *TriggerRunResponse) ProtoReflect() protoreflect.Message

func (*TriggerRunResponse) Reset

func (x *TriggerRunResponse) Reset()

func (*TriggerRunResponse) String

func (x *TriggerRunResponse) String() string

type UnimplementedAgentServiceServer

type UnimplementedAgentServiceServer struct{}

UnimplementedAgentServiceServer must be embedded to have forward compatible implementations.

NOTE: this should be embedded by value instead of pointer to avoid a nil pointer dereference when methods are called.

func (UnimplementedAgentServiceServer) CancelRun

func (UnimplementedAgentServiceServer) ContinueRun

func (UnimplementedAgentServiceServer) CreateAgentMemory

func (UnimplementedAgentServiceServer) CreateCustomAgent

func (UnimplementedAgentServiceServer) DeleteAgentMemory

func (UnimplementedAgentServiceServer) DeleteCustomAgent

func (UnimplementedAgentServiceServer) GetAgentDefinition

func (UnimplementedAgentServiceServer) GetAgentMemory

func (UnimplementedAgentServiceServer) GetRun

func (UnimplementedAgentServiceServer) GetRunStatus

func (UnimplementedAgentServiceServer) ListAgentMemories

func (UnimplementedAgentServiceServer) ListAvailableTools

func (UnimplementedAgentServiceServer) ListRuns

func (UnimplementedAgentServiceServer) ListTokenUsage

func (UnimplementedAgentServiceServer) RetryRun

func (UnimplementedAgentServiceServer) TriggerRun

func (UnimplementedAgentServiceServer) UpdateAgentMemory

func (UnimplementedAgentServiceServer) UpdateCustomAgent

type UnsafeAgentServiceServer

type UnsafeAgentServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeAgentServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to AgentServiceServer will result in compilation errors.

type UpdateAgentAccountStatusRequest

type UpdateAgentAccountStatusRequest struct {
	AgentDefinitionId string `protobuf:"bytes,1,opt,name=agent_definition_id,json=agentDefinitionId,proto3" json:"agent_definition_id,omitempty"`
	StatusCode        string `protobuf:"bytes,2,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAgentAccountStatusRequest) Descriptor deprecated

func (*UpdateAgentAccountStatusRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateAgentAccountStatusRequest.ProtoReflect.Descriptor instead.

func (*UpdateAgentAccountStatusRequest) GetAgentDefinitionId

func (x *UpdateAgentAccountStatusRequest) GetAgentDefinitionId() string

func (*UpdateAgentAccountStatusRequest) GetStatusCode

func (x *UpdateAgentAccountStatusRequest) GetStatusCode() string

func (*UpdateAgentAccountStatusRequest) ProtoMessage

func (*UpdateAgentAccountStatusRequest) ProtoMessage()

func (*UpdateAgentAccountStatusRequest) ProtoReflect

func (*UpdateAgentAccountStatusRequest) Reset

func (*UpdateAgentAccountStatusRequest) String

type UpdateAgentAccountStatusResponse

type UpdateAgentAccountStatusResponse struct {
	Status *AgentAccountStatusInfo `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAgentAccountStatusResponse) Descriptor deprecated

func (*UpdateAgentAccountStatusResponse) Descriptor() ([]byte, []int)

Deprecated: Use UpdateAgentAccountStatusResponse.ProtoReflect.Descriptor instead.

func (*UpdateAgentAccountStatusResponse) GetStatus

func (*UpdateAgentAccountStatusResponse) ProtoMessage

func (*UpdateAgentAccountStatusResponse) ProtoMessage()

func (*UpdateAgentAccountStatusResponse) ProtoReflect

func (*UpdateAgentAccountStatusResponse) Reset

func (*UpdateAgentAccountStatusResponse) String

type UpdateAgentMemoryRequest

type UpdateAgentMemoryRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// All fields are partial: an absent field leaves the column unchanged.
	Category     *string  `protobuf:"bytes,2,opt,name=category,proto3,oneof" json:"category,omitempty"`
	Content      *string  `protobuf:"bytes,3,opt,name=content,proto3,oneof" json:"content,omitempty"`
	MetadataJson *string  `protobuf:"bytes,4,opt,name=metadata_json,json=metadataJson,proto3,oneof" json:"metadata_json,omitempty"`
	EntityType   *string  `protobuf:"bytes,5,opt,name=entity_type,json=entityType,proto3,oneof" json:"entity_type,omitempty"`
	EntityId     *string  `protobuf:"bytes,6,opt,name=entity_id,json=entityId,proto3,oneof" json:"entity_id,omitempty"`
	Importance   *float64 `protobuf:"fixed64,7,opt,name=importance,proto3,oneof" json:"importance,omitempty"`
	ExpiresAt    *string  `protobuf:"bytes,8,opt,name=expires_at,json=expiresAt,proto3,oneof" json:"expires_at,omitempty"`
	// clear_entity sets entity_type AND entity_id to NULL (unscopes the memory); the entity fields are ignored when true.
	ClearEntity bool `protobuf:"varint,9,opt,name=clear_entity,json=clearEntity,proto3" json:"clear_entity,omitempty"`
	// clear_expires_at sets expires_at to NULL (makes the memory permanent); expires_at is ignored when true.
	ClearExpiresAt bool `protobuf:"varint,10,opt,name=clear_expires_at,json=clearExpiresAt,proto3" json:"clear_expires_at,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAgentMemoryRequest) Descriptor deprecated

func (*UpdateAgentMemoryRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateAgentMemoryRequest.ProtoReflect.Descriptor instead.

func (*UpdateAgentMemoryRequest) GetCategory

func (x *UpdateAgentMemoryRequest) GetCategory() string

func (*UpdateAgentMemoryRequest) GetClearEntity

func (x *UpdateAgentMemoryRequest) GetClearEntity() bool

func (*UpdateAgentMemoryRequest) GetClearExpiresAt

func (x *UpdateAgentMemoryRequest) GetClearExpiresAt() bool

func (*UpdateAgentMemoryRequest) GetContent

func (x *UpdateAgentMemoryRequest) GetContent() string

func (*UpdateAgentMemoryRequest) GetEntityId

func (x *UpdateAgentMemoryRequest) GetEntityId() string

func (*UpdateAgentMemoryRequest) GetEntityType

func (x *UpdateAgentMemoryRequest) GetEntityType() string

func (*UpdateAgentMemoryRequest) GetExpiresAt

func (x *UpdateAgentMemoryRequest) GetExpiresAt() string

func (*UpdateAgentMemoryRequest) GetId

func (x *UpdateAgentMemoryRequest) GetId() string

func (*UpdateAgentMemoryRequest) GetImportance

func (x *UpdateAgentMemoryRequest) GetImportance() float64

func (*UpdateAgentMemoryRequest) GetMetadataJson

func (x *UpdateAgentMemoryRequest) GetMetadataJson() string

func (*UpdateAgentMemoryRequest) ProtoMessage

func (*UpdateAgentMemoryRequest) ProtoMessage()

func (*UpdateAgentMemoryRequest) ProtoReflect

func (x *UpdateAgentMemoryRequest) ProtoReflect() protoreflect.Message

func (*UpdateAgentMemoryRequest) Reset

func (x *UpdateAgentMemoryRequest) Reset()

func (*UpdateAgentMemoryRequest) String

func (x *UpdateAgentMemoryRequest) String() string

type UpdateAgentMemoryResponse

type UpdateAgentMemoryResponse struct {
	Memory *AgentMemoryInfo `protobuf:"bytes,1,opt,name=memory,proto3" json:"memory,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAgentMemoryResponse) Descriptor deprecated

func (*UpdateAgentMemoryResponse) Descriptor() ([]byte, []int)

Deprecated: Use UpdateAgentMemoryResponse.ProtoReflect.Descriptor instead.

func (*UpdateAgentMemoryResponse) GetMemory

func (*UpdateAgentMemoryResponse) ProtoMessage

func (*UpdateAgentMemoryResponse) ProtoMessage()

func (*UpdateAgentMemoryResponse) ProtoReflect

func (*UpdateAgentMemoryResponse) Reset

func (x *UpdateAgentMemoryResponse) Reset()

func (*UpdateAgentMemoryResponse) String

func (x *UpdateAgentMemoryResponse) String() string

type UpdateCustomAgentRequest

type UpdateCustomAgentRequest struct {
	AgentDefinitionId string             `protobuf:"bytes,1,opt,name=agent_definition_id,json=agentDefinitionId,proto3" json:"agent_definition_id,omitempty"`
	Name              *string            `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
	Slug              *string            `protobuf:"bytes,3,opt,name=slug,proto3,oneof" json:"slug,omitempty"`
	Description       *string            `protobuf:"bytes,4,opt,name=description,proto3,oneof" json:"description,omitempty"`
	CategoryCode      *string            `protobuf:"bytes,5,opt,name=category_code,json=categoryCode,proto3,oneof" json:"category_code,omitempty"`
	TriggerType       *string            `protobuf:"bytes,6,opt,name=trigger_type,json=triggerType,proto3,oneof" json:"trigger_type,omitempty"`
	ConfigJson        *string            `protobuf:"bytes,7,opt,name=config_json,json=configJson,proto3,oneof" json:"config_json,omitempty"`
	Tools             []*AgentToolConfig `protobuf:"bytes,8,rep,name=tools,proto3" json:"tools,omitempty"`
	Includes          []string           `protobuf:"bytes,9,rep,name=includes,proto3" json:"includes,omitempty"`
	RoleId            *string            `protobuf:"bytes,10,opt,name=role_id,json=roleId,proto3,oneof" json:"role_id,omitempty"`
	ToolsProvided     bool               `protobuf:"varint,11,opt,name=tools_provided,json=toolsProvided,proto3" json:"tools_provided,omitempty"`
	// clear_description sets description to NULL; description is ignored when true.
	ClearDescription bool `protobuf:"varint,12,opt,name=clear_description,json=clearDescription,proto3" json:"clear_description,omitempty"`
	// clear_role_id detaches the role (sets role_id to NULL); role_id is ignored when true.
	ClearRoleId bool `protobuf:"varint,13,opt,name=clear_role_id,json=clearRoleId,proto3" json:"clear_role_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateCustomAgentRequest) Descriptor deprecated

func (*UpdateCustomAgentRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateCustomAgentRequest.ProtoReflect.Descriptor instead.

func (*UpdateCustomAgentRequest) GetAgentDefinitionId

func (x *UpdateCustomAgentRequest) GetAgentDefinitionId() string

func (*UpdateCustomAgentRequest) GetCategoryCode

func (x *UpdateCustomAgentRequest) GetCategoryCode() string

func (*UpdateCustomAgentRequest) GetClearDescription

func (x *UpdateCustomAgentRequest) GetClearDescription() bool

func (*UpdateCustomAgentRequest) GetClearRoleId

func (x *UpdateCustomAgentRequest) GetClearRoleId() bool

func (*UpdateCustomAgentRequest) GetConfigJson

func (x *UpdateCustomAgentRequest) GetConfigJson() string

func (*UpdateCustomAgentRequest) GetDescription

func (x *UpdateCustomAgentRequest) GetDescription() string

func (*UpdateCustomAgentRequest) GetIncludes

func (x *UpdateCustomAgentRequest) GetIncludes() []string

func (*UpdateCustomAgentRequest) GetName

func (x *UpdateCustomAgentRequest) GetName() string

func (*UpdateCustomAgentRequest) GetRoleId

func (x *UpdateCustomAgentRequest) GetRoleId() string

func (*UpdateCustomAgentRequest) GetSlug

func (x *UpdateCustomAgentRequest) GetSlug() string

func (*UpdateCustomAgentRequest) GetTools

func (x *UpdateCustomAgentRequest) GetTools() []*AgentToolConfig

func (*UpdateCustomAgentRequest) GetToolsProvided

func (x *UpdateCustomAgentRequest) GetToolsProvided() bool

func (*UpdateCustomAgentRequest) GetTriggerType

func (x *UpdateCustomAgentRequest) GetTriggerType() string

func (*UpdateCustomAgentRequest) ProtoMessage

func (*UpdateCustomAgentRequest) ProtoMessage()

func (*UpdateCustomAgentRequest) ProtoReflect

func (x *UpdateCustomAgentRequest) ProtoReflect() protoreflect.Message

func (*UpdateCustomAgentRequest) Reset

func (x *UpdateCustomAgentRequest) Reset()

func (*UpdateCustomAgentRequest) String

func (x *UpdateCustomAgentRequest) String() string

type UpdateCustomAgentResponse

type UpdateCustomAgentResponse struct {
	Agent *AgentDefinitionInfo `protobuf:"bytes,1,opt,name=agent,proto3" json:"agent,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateCustomAgentResponse) Descriptor deprecated

func (*UpdateCustomAgentResponse) Descriptor() ([]byte, []int)

Deprecated: Use UpdateCustomAgentResponse.ProtoReflect.Descriptor instead.

func (*UpdateCustomAgentResponse) GetAgent

func (*UpdateCustomAgentResponse) ProtoMessage

func (*UpdateCustomAgentResponse) ProtoMessage()

func (*UpdateCustomAgentResponse) ProtoReflect

func (*UpdateCustomAgentResponse) Reset

func (x *UpdateCustomAgentResponse) Reset()

func (*UpdateCustomAgentResponse) String

func (x *UpdateCustomAgentResponse) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL