npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-akashchat

v0.1.3

Published

n8n community nodes for AkashChat: API for open-source AI models on Akash Supercloud.

Readme

Banner image

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:

  1. Open your n8n instance
  2. Go to "Settings" > "Community Nodes"
  3. Select "Install"
  4. Enter n8n-nodes-akashchat in the "Enter npm package name" field
  5. Agree to the risks of using community nodes (if prompted)
  6. 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:

  1. Open your n8n installation directory
  2. Navigate to the nodes subdirectory
  3. Run the following command:
    npm install n8n-nodes-akashchat
  4. 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

  1. Add the AkashChat node to your workflow
  2. Configure the AkashChat API credentials (see Configuration section)
  3. Enter your prompt and select a model
  4. 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:

  1. Sign up for an account at AkashChat
  2. Generate an API key in your AkashChat dashboard
  3. In n8n, create a new credential of type 'Akash Chat API'
  4. 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

  1. Add a "Manual" trigger node
  2. Connect an AkashChat node
  3. Configure the AkashChat node:
    • Model: Choose a model (e.g., "Meta-Llama-3-1-8B-Instruct-FP8")
    • Prompt: "Hello, who are you?"
  4. Execute the workflow
  5. 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:

  1. Fork the repository
  2. Create a new branch for your feature
  3. Commit your changes
  4. Push to the branch
  5. 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.