Use CompactifAi language models as an AI Model provider in n8n AI workflows.
This package provides one n8n community node:
- Multiverse CompactifAi (AI Language Model node)
n8n is a fair-code licensed workflow automation platform.
Follow the official community nodes installation guide:
Package name:
@plainconcepts/n8n-nodes-compactifai
The Multiverse CompactifAi node is an AI Language Model node that:
- Authenticates against CompactifAi using a bearer access token
- Loads available models dynamically from
GET /v1/models - Exposes the selected model to downstream AI nodes in n8n
- Supports common generation controls:
- Temperature
- Maximum Tokens
- Frequency Penalty
Credential type:
- Multiverse Compactifai API
Required field:
- Access Token
How to configure:
- Create a CompactifAi access token.
- In n8n, create a new credential of type Multiverse Compactifai API.
- Paste your token into Access Token.
- Save and use it in the node.
The credential test calls:
GET https://api.compactif.ai/v1/models
Typical AI workflow setup:
- Add the Multiverse CompactifAi node.
- Select your credential.
- Pick a model from the list (or provide a model ID with an expression).
- Optionally tune Temperature, Maximum Tokens, and Frequency Penalty.
- Connect this node output to an AI node that expects an AI Language Model.
Notes:
- Maximum Tokens set to
-1means no explicit max token limit is sent. - If your model list is empty, verify token validity and API access first.
- Built with n8n Nodes API version
1 - Intended for n8n versions that support AI Language Model node connections
If you run into compatibility issues, open an issue in the repository with your n8n version.
Project scripts:
npm run build- Build the nodenpm run dev- Start development modenpm run lint- Lint the codenpm run lint:fix- Lint and auto-fixnpm run release- Run release flow
- Initial release
- Added Multiverse CompactifAi AI Language Model node
- Added CompactifAi access token credential