NAiOS IconNAiOS Logo
Volver al catálogo

Anthropic Administrator

anthropic_administrator

The Anthropic Admin API allows programmatic management of organizational resources, including members, workspaces, and API keys.

Acciones
4
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

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ón

Tool to create a new message completion. use when you need to generate assistant text given a conversation history.

Parámetros de entrada

  • modelstringObligatorio

    Model to use for completion, e.g., 'claude-2' or 'claude-3.5'

  • top_kinteger

    Sample from the top K tokens during generation

  • top_pnumber

    Nucleus sampling cutoff probability

  • messagesobject[]Obligatorio

    List of messages forming the conversation so far

  • max_tokensinteger

    Maximum number of tokens to generate

  • temperaturenumber

    Sampling temperature between 0 (deterministic) and 1 (most random)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get ModelANTHROPIC_ADMINISTRATOR_GET_MODELAcción

Tool to retrieve details of a specific model by its id. use after confirming the model id is valid.

Parámetros de entrada

  • model_idstringObligatorio

    ID of the model to retrieve.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List modelsANTHROPIC_ADMINISTRATOR_LIST_MODELSAcción

Tool 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[]Obligatorio

    List of available models with metadata.

  • errorstring

    Error if any occurred during the execution of the action

  • last_idstring

    Identifier of the last model in the list.

  • first_idstring

    Identifier of the first model in the list.

  • has_morebooleanObligatorio

    Whether more results are available.

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Prompt CachingANTHROPIC_ADMINISTRATOR_PROMPT_CACHINGAcción

Tool 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

  • modelstringObligatorio

    Which Claude model to use, e.g., 'claude-3.5'.

  • top_pnumber

    Nucleus sampling cutoff probability.

  • streamboolean

    Stream back tokens if true.

  • systemobject[]

    Optional system blocks preceding the conversation. Useful for static instructions or context.

  • messagesobject[]Obligatorio

    List of message blocks (user and assistant turns).

  • max_tokensinteger

    Max tokens to generate in the response.

  • temperaturenumber

    Sampling temperature between 0 and 1.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not