@clod_io/n8n-nodes-clod
v0.1.4
Published
n8n community node for CLōD API (OpenAI-compatible)
Downloads
142
Readme
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-clodOr install via npm:
npm install @clod_io/n8n-nodes-clodCredentials
- 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
