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

@stackitcloud/n8n-nodes-stackit-ai-model-serving

v1.1.0

Published

n8n community nodes for STACKIT AI Model Serving (OpenAI-compatible Chat & Embeddings)

Downloads

13

Readme

Project banner Project banner

STACKIT AI Model Serving nodes for n8n

n8n community nodes that connect to STACKIT AI Model Serving’s OpenAI-compatible API. Includes:

  • STACKIT Chat Model — Chat-completions compatible LLM node.
  • STACKIT Embeddings — Text embeddings generation node.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the official guide to install community nodes: n8n Community Nodes Installation

Once installed, search for “STACKIT Chat Model” or “STACKIT Embeddings” in the node panel.

Credentials

These nodes use a single credential: “STACKIT AI Model Serving API”.

What you need:

How it works:

  • Set the API Key and (optionally) API URL in the credential "STACKIT AI Model Serving API".
  • All node requests use the credential’s API URL. If not set, the default endpoint above is used.
  • The Model picker fetches from ${API_URL}/models using your credential.

Notes:

  • These nodes are compatible with OpenAI-style models and endpoints provided by STACKIT

STACKIT Chat Model

Use this node to obtain a ChatCompletions-capable model as an AI Model output for n8n’s AI features or your own custom chains and agents. No LangChain dependency is required. The node accepts a variety of input shapes (including common LangChain-like prompt structures) and normalizes them for the API.

Key options:

  • Model: dynamically loaded from your STACKIT project (non-embedding models)
  • Temperature, Top P, Penalties, Max tokens, Retries, Timeout
  • Response format: text or JSON (when using JSON mode, ensure your prompts instruct the model to return valid JSON)

Typical usage:

  1. Add “STACKIT Chat Model” to the canvas
  2. Configure the node with your desired parameters (API-Key, Model and Options)
  3. Connect to AI nodes (e.g., AI Agent, AI Chain)

Behavior details:

  • Input normalization: The model function accepts strings, arrays of OpenAI-style messages, and objects like { input }, { messages }, { prompt }, as well as common LangChain prompt shapes (StringPromptValue/ChatPromptValue). These are normalized to OpenAI-compatible messages internally.
  • Error handling: Unknown errors are wrapped in n8n’s NodeOperationError so failures appear clearly readable in the UI.
  • Tracing in UI: The node uses addInputData/addOutputData so every call shows messages in and response/error out in the execution view.

STACKIT Embeddings

Use this node to generate vector embeddings from text.

Key options:

  • Model: dynamically loaded embeddings models (intfloat/* models)
  • Dimensions: choose target dimensionality if supported
  • Batch size and timeout controls
  • Strip new lines option for cleaner inputs

Typical usage:

  1. Add “STACKIT Embeddings” to the canvas (AI > Embeddings)
  2. Configure the node with your desired parameters (API-Key, Model and Options)
  3. Connect the output to vector stores, RAG flows, or custom logic

Behavior details:

  • Batch and timeouts: Inputs are batched (configurable) and timeouts accept seconds for small values (converted to ms). Newline stripping is enabled by default for cleaner inputs.
  • Error handling: Unknown errors are wrapped in NodeOperationError for readable failures in the UI.
  • Tracing in UI: The node logs inputs and outputs using addInputData/addOutputData so each request is traceable.

Compatibility

Compatible with [email protected] or later.

Resources