Get Foundation Model
bedrock_get_foundation_model | R Documentation |
Get details about a Amazon Bedrock foundation model¶
Description¶
Get details about a Amazon Bedrock foundation model.
Usage¶
Arguments¶
modelIdentifier
[required] The model identifier.
Value¶
A list with the following syntax:
list(
modelDetails = list(
modelArn = "string",
modelId = "string",
modelName = "string",
providerName = "string",
inputModalities = list(
"TEXT"|"IMAGE"|"EMBEDDING"
),
outputModalities = list(
"TEXT"|"IMAGE"|"EMBEDDING"
),
responseStreamingSupported = TRUE|FALSE,
customizationsSupported = list(
"FINE_TUNING"|"CONTINUED_PRE_TRAINING"
),
inferenceTypesSupported = list(
"ON_DEMAND"|"PROVISIONED"
),
modelLifecycle = list(
status = "ACTIVE"|"LEGACY"
)
)
)