Actions10
- Agent Chat Actions
- Browser Automation Actions
- Code Execution Actions
- File Processing Actions
- Memory Operation Actions
- Tool Execution Actions
Overview
The "Memory Operation - Store Information" functionality of the Nerve Agent node allows users to save specific pieces of information into an agent's memory. This is useful for scenarios where you want the AI system to remember facts, context, or any relevant data that can be referenced later in workflows involving multi-agent orchestration or advanced AI tasks. For example, you might store user preferences, session details, or important notes that the AI agents can recall and use to personalize interactions or make informed decisions.
Properties
| Name | Meaning |
|---|---|
| Content | The actual information or text string to be stored in the agent's memory. This is required and can be multiline. |
| Category | An optional label or category to organize the stored information, helping to group or classify memory entries. |
Output
The node outputs JSON data representing the result of the store operation. Typically, this would include confirmation that the information was successfully saved, possibly with metadata such as a unique identifier or timestamp. The exact structure depends on the API response from the Nerve Agent service but generally confirms the storage action.
No binary data output is indicated for this operation.
Dependencies
- Requires an API key credential for authenticating with the Nerve Agent AI system.
- Needs the base URL of the Nerve Agent API configured in the node credentials.
- The node sends requests with appropriate headers including authorization and content type set to JSON.
Troubleshooting
- Missing or invalid API key: The node will fail if the API key credential is not provided or incorrect. Ensure the API key is valid and properly configured.
- Empty Content field: Since the "Content" property is required, leaving it empty will likely cause an error or no data to be stored. Always provide meaningful information to store.
- Network or API errors: Connectivity issues or server-side problems may cause failures. Check network access and verify the Nerve Agent service status.
- Incorrect category usage: While optional, using categories inconsistently might make retrieval or organization harder. Use clear and consistent category names.
Links and References
- Nerve Agent Official Documentation (hypothetical link)
- n8n Documentation on Creating Custom Nodes
- General info on API Authentication Best Practices