NAiOS IconNAiOS Logo
Volver al catálogo

Griptape

griptape

Griptape is a comprehensive platform offering tools and frameworks for building, deploying, and scaling generative AI applications.

Acciones
17
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 (17)

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.

Assistant CreationGRIPTAPE_ASSISTANT_CREATIONAcción

Tool to create a new assistant. Use when you need to register a uniquely named assistant in Griptape Cloud before initiating runs.

Parámetros de entrada

  • aliasstringObligatorio

    Unique name for the assistant. Must be unique across your workspace.

  • modelstring

    Model identifier to use (e.g., 'gpt-4'). Defaults to account default if omitted.

  • toolsstring[]

    List of tool identifiers to attach to the assistant.

  • metadataobject

    Arbitrary metadata dictionary to tag or categorize the assistant. Values must be string, number, or boolean.

  • descriptionstring

    Optional human-readable description for the assistant.

  • system_promptstring

    Custom system prompt to guide the assistant’s behavior.

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

Tool to list all assistants. Use after authenticating with Griptape Cloud to retrieve available assistants. Supports optional pagination.

Parámetros de entrada

  • limitinteger

    Maximum number of assistants to return, must be >= 1.

  • offsetinteger

    Number of assistants to skip before returning results, must be >= 0.

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

Cancel Assistant RunGRIPTAPE_ASSISTANT_RUN_CANCELLATIONAcción

Tool to cancel an ongoing assistant run. Use when you need to stop a run prematurely after confirming the run ID is valid.

Parámetros de entrada

  • assistant_run_idstringObligatorio

    The unique identifier of the assistant run to cancel. Ensure this run is still in progress.

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

Assistant Run CreationGRIPTAPE_ASSISTANT_RUN_CREATIONAcción

Tool to initiate a new assistant run. Use when starting a fresh execution with custom arguments or resources after selecting the assistant.

Parámetros de entrada

  • argsobject[]

    List of artifacts or arguments to pass into the run

  • inputobject

    Additional JSON payload for the run

  • streamboolean

    Whether to stream run events

  • tool_idsstring[]

    List of tool IDs to enable for this run

  • thread_idstring

    Identifier of the thread to associate with this run

  • ruleset_idsstring[]

    List of ruleset IDs to apply for this run

  • assistant_idstringObligatorio

    Identifier of the assistant to run

  • structure_idsstring[]

    List of structure IDs to use for the run

  • knowledge_base_idsstring[]

    List of knowledge base IDs to query during the run

  • additional_tool_idsstring[]

    Additional tool IDs to include

  • additional_ruleset_idsstring[]

    Additional ruleset IDs to include

  • additional_structure_idsstring[]

    Additional structure IDs to include

  • additional_knowledge_base_idsstring[]

    Additional knowledge base IDs to include

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 Assistant Run Error DetailsGRIPTAPE_ASSISTANT_RUN_ERROR_DETAILSAcción

Tool to fetch detailed error information for a specific assistant run. Use after an assistant run has failed to inspect error details.

Parámetros de entrada

  • run_idstringObligatorio

    Unique identifier of the assistant run.

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

Stream Assistant Run EventsGRIPTAPE_ASSISTANT_RUN_EVENTS_STREAMAcción

Tool to stream real-time events for a specific Assistant run. Use after initiating a run to monitor its progress.

Parámetros de entrada

  • assistant_run_idstringObligatorio

    Identifier of the Assistant run to stream events for.

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

Tool to list all runs for a given assistant. Use when you need historical run executions for analysis after using the assistant.

Parámetros de entrada

  • limitinteger

    Maximum number of runs to return, must be >= 1.

  • offsetinteger

    Number of runs to skip before returning results, must be >= 0.

  • assistant_idstringObligatorio

    Unique identifier of the assistant to list runs for.

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

Assistant Run Logs RetrievalGRIPTAPE_ASSISTANT_RUN_LOGS_RETRIEVALAcción

Tool to retrieve logs generated during the execution of a specific assistant run. Use after confirming the run_id to fetch all log events once the run has completed.

Parámetros de entrada

  • assistant_run_idstringObligatorio

    Unique identifier for the assistant run whose logs are being fetched

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

Assistant Run Result RetrievalGRIPTAPE_ASSISTANT_RUN_RESULT_RETRIEVALAcción

Tool to fetch the final result of a completed assistant run. Use after confirming the run has finished to retrieve its final assistant-generated output.

Parámetros de entrada

  • run_idstringObligatorio

    Identifier of the assistant run to retrieve the final result for

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

Retrieve Assistant RunGRIPTAPE_ASSISTANT_RUN_RETRIEVALAcción

Tool to retrieve an assistant run's status and details. Use when you need current status and metadata for a specific assistant run.

Parámetros de entrada

  • assistant_run_idstringObligatorio

    Unique identifier of the assistant run 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

Retry Assistant RunGRIPTAPE_ASSISTANT_RUN_RETRYAcción

Tool to retry a previously failed assistant run. Use when a run has failed and you need to rerun it with the same parameters.

Parámetros de entrada

  • run_idstringObligatorio

    Identifier of the assistant run to retry.

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 Ruleset by AliasGRIPTAPE_GET_RULESET_BY_ALIASAcción

Tool to retrieve a ruleset by its alias. Use after confirming the alias to fetch the ruleset's details from Griptape Cloud.

Parámetros de entrada

  • aliasstringObligatorio

    Ruleset alias identifier to filter by

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

Tool to list available embedding drivers. Use when you need to retrieve supported drivers and their models before embedding text.

Parámetros de entrada

  • endpoint_overridestring

    Optional endpoint path or alias to query for drivers. Examples: 'embedding/drivers', 'embedding', 'models', 'info', '/models'.

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

Ruleset CreationGRIPTAPE_RULESET_CREATIONAcción

Tool to create a new ruleset. Use when you need to define a new set of rules with a unique alias before executing runs.

Parámetros de entrada

  • aliasstringObligatorio

    Unique alias for the new ruleset

  • metadataobject

    Optional metadata key-value pairs for the ruleset

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

Create ToolGRIPTAPE_TOOL_CREATIONAcción

Tool to create a new tool in Griptape Cloud. Use when you need to deploy a tool from a Git repo or ZIP archive.

Parámetros de entrada

  • namestringObligatorio

    Unique name for the tool.

  • branchstring

    Branch name to deploy; defaults to the repository’s default branch.

  • git_urlstring

    HTTPS URL of the GitHub repository containing the tool.

  • zip_urlstring

    Signed URL to a ZIP archive containing the tool code.

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 Tool Deployment StatusGRIPTAPE_TOOL_DEPLOYMENT_STATUS_RETRIEVALAcción

Tool to retrieve status of a specific tool deployment. Use after creating a deployment to poll its progress.

Parámetros de entrada

  • tool_idstringObligatorio

    Unique identifier of the tool whose deployment status is being fetched.

  • deployment_idstringObligatorio

    Unique identifier of the specific deployment to query.

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

Tool to list all tools. Use when you need to discover available tools and their IDs in Griptape Cloud.

Parámetros de entrada

Sin parámetros.

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