Get Agent
bedrockagent_get_agent | R Documentation |
Gets information about an agent¶
Description¶
Gets information about an agent.
Usage¶
Arguments¶
agentId
[required] The unique identifier of the agent.
Value¶
A list with the following syntax:
list(
agent = list(
agentArn = "string",
agentCollaboration = "SUPERVISOR"|"SUPERVISOR_ROUTER"|"DISABLED",
agentId = "string",
agentName = "string",
agentResourceRoleArn = "string",
agentStatus = "CREATING"|"PREPARING"|"PREPARED"|"NOT_PREPARED"|"DELETING"|"FAILED"|"VERSIONING"|"UPDATING",
agentVersion = "string",
clientToken = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
customOrchestration = list(
executor = list(
lambda = "string"
)
),
customerEncryptionKeyArn = "string",
description = "string",
failureReasons = list(
"string"
),
foundationModel = "string",
guardrailConfiguration = list(
guardrailIdentifier = "string",
guardrailVersion = "string"
),
idleSessionTTLInSeconds = 123,
instruction = "string",
memoryConfiguration = list(
enabledMemoryTypes = list(
"SESSION_SUMMARY"
),
sessionSummaryConfiguration = list(
maxRecentSessions = 123
),
storageDays = 123
),
orchestrationType = "DEFAULT"|"CUSTOM_ORCHESTRATION",
preparedAt = as.POSIXct(
"2015-01-01"
),
promptOverrideConfiguration = list(
overrideLambda = "string",
promptConfigurations = list(
list(
basePromptTemplate = "string",
foundationModel = "string",
inferenceConfiguration = list(
maximumLength = 123,
stopSequences = list(
"string"
),
temperature = 123.0,
topK = 123,
topP = 123.0
),
parserMode = "DEFAULT"|"OVERRIDDEN",
promptCreationMode = "DEFAULT"|"OVERRIDDEN",
promptState = "ENABLED"|"DISABLED",
promptType = "PRE_PROCESSING"|"ORCHESTRATION"|"POST_PROCESSING"|"KNOWLEDGE_BASE_RESPONSE_GENERATION"|"MEMORY_SUMMARIZATION"
)
)
),
recommendedActions = list(
"string"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
)