Package Information
Downloads: 240 weekly / 258 monthly
Latest Version: 0.1.4
Author: CLōD
Available Nodes
Documentation
n8n-nodes-clod
This is an n8n community node for the CLōD API, an OpenAI-compatible LLM service.
Installation
In your n8n instance, go to Settings > Community Nodes and install:
@clod_io/n8n-nodes-clod
Or install via npm:
npm install @clod_io/n8n-nodes-clod
Credentials
- Go to https://app.clod.io and sign in
- Navigate to your account settings to get your API key
- In n8n, create new credentials of type CLōD API and enter your API key
Usage
The CLōD node supports chat completions with the following parameters:
- Model (required): The model name to use (e.g., "Llama 3.1 8B")
- Messages (required): JSON array of message objects with
roleandcontent - Options:
- Temperature (0-2)
- Max Tokens
- Stream
Example Messages Format
[
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "Hello!" }
]
License
MIT