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

The node provides an interface to interact with a comprehensive AI-powered search assistant platform designed for internal teams. Specifically, the "Chat" resource's "Deletes Agent Server Files" operation allows users to delete files stored on the agent server associated with a particular chat session. This is useful for cleaning up temporary or unnecessary files related to a chat session, helping maintain server hygiene and manage storage.

Practical scenarios include:

  • Automatically removing intermediate files generated during AI chat sessions once they are no longer needed.
  • Managing disk space by deleting obsolete agent server files linked to specific chat sessions.
  • Ensuring privacy and security by clearing sensitive files after a chat session ends.

Properties

Name Meaning
Session ID The unique identifier of the chat session whose agent server files should be deleted.

Output

The output of this operation typically includes the full HTTP response from the API call that deletes the agent server files. The json field will contain the response data confirming the deletion status or any error messages. There is no indication that binary data is returned for this operation.

Dependencies

  • Requires an API key credential for authentication to the AI-powered search assistant platform.
  • The node makes HTTP DELETE requests to the endpoint /chats/{session_id}/agent_server_files.
  • The base URL for API requests is configured via credentials and environment settings in n8n.

Troubleshooting

  • Common Issues:

    • Invalid or missing Session ID: The operation requires a valid session ID; providing an incorrect or empty value will cause errors.
    • Authentication failures: Ensure the API key credential is correctly configured and has sufficient permissions.
    • Network or connectivity issues: The node depends on network access to the API endpoint.
  • Error Messages:

    • Unauthorized or 401 errors indicate invalid or missing API credentials.
    • 404 Not Found may indicate the session ID does not exist or no agent server files are associated.
    • 400 Bad Request could result from malformed input parameters.
  • Resolutions:

    • Verify the session ID is correct and corresponds to an existing chat session.
    • Check API key credentials and permissions.
    • Confirm network connectivity and API endpoint availability.

Links and References


This summary focuses exclusively on the "Chat" resource and the "Deletes Agent Server Files" operation as requested.

Discussion