get_model_details
Retrieve detailed information about a specific AI model by providing its saved name and version. Use this tool to access model configurations and metadata for red-teaming tasks and AI safety analysis.
Instructions
Retrieve details of a specific model using its saved name.
Args: model_saved_name: The name under which the model is saved. model_version: The version of the model to be used for the redteam task. Returns: A dictionary containing the details of the model.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model_saved_name | Yes | ||
model_version | Yes |
Input Schema (JSON Schema)
{
"properties": {
"model_saved_name": {
"title": "Model Saved Name",
"type": "string"
},
"model_version": {
"title": "Model Version",
"type": "string"
}
},
"required": [
"model_saved_name",
"model_version"
],
"title": "get_model_detailsArguments",
"type": "object"
}