h2oGPTe icon

h2oGPTe

h2oGPTe is an AI-powered search assistant for your internal teams to answer questions gleaned from large volumes of documents, websites and workplace content.

Actions198

Overview

This node operation allows users to delete one or more document summaries from the system by specifying their unique summary IDs. Document summaries are condensed representations or extracts of documents, often used for quick reference or analysis. This operation is useful in scenarios where outdated, incorrect, or unnecessary summaries need to be removed to maintain data accuracy and relevance.

Practical examples:

  • Removing obsolete summaries after document updates.
  • Cleaning up summaries that were generated incorrectly.
  • Managing storage by deleting summaries no longer needed.

Properties

Name Meaning
Summary IDs List of string IDs representing the document summaries to delete from the system. Required.

Output

The output of this operation typically includes the response from the API indicating the success or failure of the deletion request. The json output field will contain the full HTTP response returned by the API, which may include status codes and messages confirming the deletion of the specified summaries.

No binary data output is expected for this operation.

Dependencies

  • Requires an API key credential for authentication with the external service.
  • The node sends a DELETE HTTP request to the endpoint /documents/summaries/{summary_ids}, where {summary_ids} is a comma-separated list of summary IDs to delete.
  • The base URL for the API is configured via credentials and must be set correctly.

Troubleshooting

  • Invalid or missing Summary IDs: Ensure that the Summary IDs property is provided and contains valid IDs separated appropriately if multiple.
  • Authentication errors: Verify that the API key credential is correctly configured and has sufficient permissions to delete document summaries.
  • Network or timeout issues: Check network connectivity and consider increasing timeout settings if deletions take longer.
  • API errors: Review the error message returned in the response JSON for details such as "summary not found" or "permission denied" and adjust inputs or permissions accordingly.

Links and References

  • Refer to the external API documentation for detailed information on the document summaries deletion endpoint.
  • Consult your API provider's authentication and permission setup guides to ensure proper access rights.

Discussion