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-infercom

v0.1.2

Published

n8n community node for Infercom - EU-sovereign AI inference platform powered by SambaNova

Downloads

203

Readme

n8n-nodes-infercom

This is an n8n community node for Infercom - an EU-sovereign AI inference platform powered by SambaNova technology.

Infercom provides high-performance AI inference with full EU data sovereignty. All infrastructure is hosted in EU datacenters, ensuring your data never leaves EU jurisdiction. The API is fully OpenAI-compatible, making it easy to integrate into existing workflows while meeting GDPR and European regulatory requirements.

This node enables n8n users to leverage powerful open-source AI models like Llama, DeepSeek, and Mistral for chat completions, with plans to expand to embeddings, audio transcription, and more. Whether you're building customer support automation, content generation pipelines, or intelligent data processing workflows, Infercom delivers enterprise-grade AI inference with the sovereignty guarantees European businesses need.

Features

  • EU Data Sovereignty: Your data stays within EU jurisdiction (hosted in EU)
  • GDPR Compliant: Built for European regulatory requirements
  • High Performance: Powered by SambaNova's dataflow architecture
  • OpenAI-Compatible: Drop-in replacement for OpenAI workflows

Supported Operations

Chat Completions

Send messages to AI models and receive intelligent responses. Supports:

  • Multiple open-source AI models (e.g., Llama, DeepSeek)
  • System, user, and assistant message roles
  • Configurable parameters (temperature, max_tokens, top_p, etc.)

Response Data

The node returns the full API response, including:

  • choices[0].message.content - The AI's response text
  • model - The model used
  • usage.prompt_tokens / usage.completion_tokens - Token counts for cost tracking
  • usage.time_to_first_token - Latency until first token (typically <100ms)
  • usage.completion_tokens_per_sec - Token generation throughput
  • usage.total_latency - Total response time

Installation

In n8n Desktop/Self-hosted

  1. Go to Settings > Community Nodes
  2. Click Install a community node
  3. Enter n8n-nodes-infercom
  4. Click Install

Manual Installation

npm install n8n-nodes-infercom

Configuration

  1. Get your API key from the Infercom Cloud
  2. In n8n, go to Credentials > New Credential
  3. Search for "Infercom API"
  4. Enter your API key

Usage Example

  1. Add the Infercom node to your workflow
  2. Select your credentials
  3. Choose a model (e.g., "Llama 3.3 (70B)")
  4. Add messages:
    • System message: Define the AI's behavior
    • User message: Your question or prompt
  5. Configure options (temperature, max_tokens, etc.)
  6. Execute the workflow

Available Models

Models are fetched dynamically from the Infercom API, so you always have access to the latest models. Current models include:

  • Meta-Llama-3.3-70B-Instruct - Meta's Llama 3.3 70B instruction-tuned model
  • DeepSeek-V3-0324-cb - DeepSeek V3 model
  • gpt-oss-120b - Open-source 120B parameter model

Check docs.infercom.ai for the current model catalog.

Example Workflows

Example workflows are available in the examples folder:

To use an example:

  1. Download the JSON file
  2. In n8n, go to Workflows > Import from File
  3. Select the downloaded file
  4. Update the credentials to use your Infercom API key
  5. Select a model from the dropdown

Resources

License

MIT License - see LICENSE.md