BeeAI icon

BeeAI

Interact with BeeAI API

Overview

This node integrates with the BeeAI API to manage various resources, including Facts. Specifically, the "Delete Fact" operation allows users to remove a fact entry from the BeeAI system by specifying its unique identifier. This is useful in scenarios where outdated or incorrect facts need to be cleaned up or removed from the dataset.

Practical examples include:

  • Removing a fact that was entered incorrectly.
  • Cleaning up facts that are no longer relevant to the current context.
  • Managing and maintaining an accurate knowledge base within BeeAI.

Properties

Name Meaning
Fact ID The unique identifier of the fact to delete. This is a required string input property.

Output

The node outputs JSON data representing the result of the delete operation. Typically, this will confirm whether the deletion was successful or provide details if it failed. The exact structure depends on the BeeAI API response but generally includes status information.

No binary data output is involved in this operation.

Dependencies

  • Requires an API key credential for authenticating requests to the BeeAI API.
  • The node sends HTTP requests to https://api.bee.computer.
  • Proper configuration of the API key credential in n8n is necessary for successful execution.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Fact ID will likely result in an error response from the API.
    • Missing or incorrect API credentials will cause authentication failures.
    • Network connectivity problems can prevent the node from reaching the BeeAI API endpoint.
  • Error messages and resolutions:

    • "Unauthorized" or similar: Check that the API key credential is correctly set up and valid.
    • "Fact not found" or equivalent: Verify that the Fact ID provided exists and is correct.
    • Timeouts or network errors: Ensure stable internet connection and that the API endpoint is reachable.

Links and References

Discussion