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 creates a topic model on a specified collection within the system. Topic modeling is a technique used to discover abstract topics that occur in a collection of documents. This operation is useful for analyzing large document collections to identify themes or topics automatically, which can then be used for categorization, summarization, or improving search relevance.

Practical examples include:

  • Automatically generating topic summaries for a research paper collection.
  • Organizing customer feedback documents by underlying themes.
  • Enhancing content discovery by tagging documents with inferred topics.

Properties

Name Meaning
Collection ID The unique identifier of the collection on which the topic model will be created.
Additional Options Optional parameters; currently supports:
- Timeout: Number of seconds to wait before timing out the request (default 0 = no timeout).

Output

The output JSON contains the full HTTP response from the API call that creates the topic model on the specified collection. This typically includes details about the created topic model such as its ID, status, and metadata related to the modeling process.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for authentication to the external service.
  • The base URL for API requests is derived from the configured credentials.
  • The node sends a POST request to the endpoint /collections/{collection_id}/topic_model.

Troubleshooting

  • Timeouts: If the topic modeling process takes too long, consider increasing the "Timeout" option or setting it appropriately to avoid premature termination.
  • Invalid Collection ID: Ensure the provided Collection ID exists and is accessible with the given credentials.
  • Authentication Errors: Verify that the API key credential is valid and has permissions to create topic models on collections.
  • API Endpoint Errors: Check network connectivity and that the API endpoint /collections/{collection_id}/topic_model is reachable.

Links and References

Discussion