Anthropic Administrator
anthropic_administratorThe Anthropic Admin API allows programmatic management of organizational resources, including members, workspaces, and API keys.
Acciones disponibles (4)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Create MessageANTHROPIC_ADMINISTRATOR_CREATE_MESSAGEAcciónTool to create a new message completion. use when you need to generate assistant text given a conversation history.
ANTHROPIC_ADMINISTRATOR_CREATE_MESSAGEAcciónTool to create a new message completion. use when you need to generate assistant text given a conversation history.
Parámetros de entrada
modelstringObligatorioModel to use for completion, e.g., 'claude-2' or 'claude-3.5'
top_kintegerSample from the top K tokens during generation
top_pnumberNucleus sampling cutoff probability
messagesobject[]ObligatorioList of messages forming the conversation so far
max_tokensintegerMaximum number of tokens to generate
temperaturenumberSampling temperature between 0 (deterministic) and 1 (most random)
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get ModelANTHROPIC_ADMINISTRATOR_GET_MODELAcciónTool to retrieve details of a specific model by its id. use after confirming the model id is valid.
ANTHROPIC_ADMINISTRATOR_GET_MODELAcciónTool to retrieve details of a specific model by its id. use after confirming the model id is valid.
Parámetros de entrada
model_idstringObligatorioID of the model to retrieve.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List modelsANTHROPIC_ADMINISTRATOR_LIST_MODELSAcciónTool to list available models. use when you need to see which models are available before selection.
ANTHROPIC_ADMINISTRATOR_LIST_MODELSAcciónTool to list available models. use when you need to see which models are available before selection.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobject[]ObligatorioList of available models with metadata.
errorstringError if any occurred during the execution of the action
last_idstringIdentifier of the last model in the list.
first_idstringIdentifier of the first model in the list.
has_morebooleanObligatorioWhether more results are available.
successfulbooleanObligatorioWhether or not the action execution was successful or not
Prompt CachingANTHROPIC_ADMINISTRATOR_PROMPT_CACHINGAcciónTool to cache and reuse prompt content to reduce costs and latency. use after you have static prompt portions you intend to reuse across calls.
ANTHROPIC_ADMINISTRATOR_PROMPT_CACHINGAcciónTool to cache and reuse prompt content to reduce costs and latency. use after you have static prompt portions you intend to reuse across calls.
Parámetros de entrada
modelstringObligatorioWhich Claude model to use, e.g., 'claude-3.5'.
top_pnumberNucleus sampling cutoff probability.
streambooleanStream back tokens if true.
systemobject[]Optional system blocks preceding the conversation. Useful for static instructions or context.
messagesobject[]ObligatorioList of message blocks (user and assistant turns).
max_tokensintegerMax tokens to generate in the response.
temperaturenumberSampling temperature between 0 and 1.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not