Description

n8n-nodes-akashchat
This is an n8n community node for AkashChat API integration. It allows you to interact with open-source AI models on the Akash Supercloud directly from your n8n workflows.
n8n is a fair-code licensed workflow automation platform.
AkashChat is a platform that provides access to leading open-source AI models through a unified API.
Features
- Interact with multiple open-source AI models
- Send chat messages to AI models
- Select from a variety of models (Llama, Qwen, DeepSeek, etc.)
- Simple integration with n8n workflows
Installation
Community Node (Recommended)
To install this node as a community node in n8n:
- Open your n8n instance
- Go to "Settings" > "Community Nodes"
- Select "Install"
- Enter
n8n-nodes-akashchatin the "Enter npm package name" field - Agree to the risks of using community nodes (if prompted)
- Click "Install"
After installation, the node will be available in the "AkashChat" category in the node palette.
Manual Installation (Advanced)
If you prefer manual installation or are using a custom n8n setup:
- Open your n8n installation directory
- Navigate to the
nodessubdirectory - Run the following command:
npm install n8n-nodes-akashchat - Restart your n8n instance
Note: If you're using Docker or a server deployment, you may need to rebuild your container or restart your server for the changes to take effect.
Usage
- Add the AkashChat node to your workflow
- Configure the AkashChat API credentials (see Configuration section)
- Enter your prompt and select a model
- Execute the node to receive the AI's response
Model Selection
Choose from a variety of open-source models, including Llama, Qwen, DeepSeek, and more. Model descriptions are available in the node for easy selection.
Configuration
AkashChat API Credentials
To use this node, you need to set up AkashChat API credentials:
- Sign up for an account at AkashChat
- Generate an API key in your AkashChat dashboard
- In n8n, create a new credential of type 'Akash Chat API'
- Enter your API key
Node Parameters
- Prompt: The user's input message to the AI
- Model: Select the AI model you want to use
Examples
Basic Chat Workflow
- Add a "Manual" trigger node
- Connect an AkashChat node
- Configure the AkashChat node:
- Model: Choose a model (e.g., "Meta-Llama-3-1-8B-Instruct-FP8")
- Prompt: "Hello, who are you?"
- Execute the workflow
- The AkashChat node will return the AI's response
Support
If you encounter any issues or have questions about this node, please open an issue on the GitHub repository.
Contributing
Contributions to improve this node are welcome. Please follow these steps:
- Fork the repository
- Create a new branch for your feature
- Commit your changes
- Push to the branch
- Create a new Pull Request
License
This project is licensed under the MIT License.
About n8n
n8n is a free and open fair-code licensed workflow automation tool. It can be self-hosted, easily extended, and used to automate workflows across various services and applications. n8n enables you to connect anything to everything.
About AkashChat
AkashChat is a platform that provides a unified API to access various open-source AI models. It allows developers to integrate multiple AI services into their applications without managing separate API integrations for each model provider. AkashChat supports a wide range of models, making it easier to experiment with and deploy various AI capabilities in your workflows.
About Akash Network
Akash Network is a decentralized, open-source cloud computing marketplace. It enables anyone to rent and lease computing resources securely and efficiently, with competitive pricing compared to traditional cloud providers. Akash empowers developers and businesses to deploy applications in a permissionless, censorship-resistant, and cost-effective environment, leveraging the power of blockchain and open-source technologies.
Changelog
0.1.2
- Initial release with chat/completions support and model selection.