@superoutcast/n8n-nodes-abacusai-chat
v1.0.16
Published
n8n node for AbacusAI chat integration
Readme
n8n AbacusAI Chat Node
This is a custom n8n node that integrates with AbacusAI to enable chat functionality with AI models.
Installation
- Clone or download this repository.
- Run
npm installto install dependencies. - Run
npm run buildto compile the TypeScript code. - Copy the
distfolder to your n8n custom nodes directory. - Restart n8n.
Usage
- In n8n, add the "AbacusAI Chat" node to your workflow.
- Configure your AbacusAI credentials:
- Go to Credentials in n8n.
- Create new credentials of type "AbacusAI Credentials".
- Enter your AbacusAI API key.
- In the node properties:
- Message: The text message to send to the AI model.
- Deployment Name: The name of your AbacusAI deployment.
- Temperature: Controls randomness (0-1, default 0.7).
- Max Tokens: Maximum tokens to generate (default 1000).
- Connect the node to your workflow and run it.
Output
The node outputs a JSON object with:
response: The AI's chat response.deploymentName: The deployment used.temperature: The temperature setting used.maxTokens: The max tokens setting used.
Requirements
- n8n instance
- AbacusAI API key
- Deployed chat model in AbacusAI
API Reference
This node uses the AbacusAI v0 predict API endpoint. Make sure your deployment supports chat inputs.
For more information, visit AbacusAI Documentation.
