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.
- 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
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.)
The node returns the full API response, including:
choices[0].message.content- The AI's response textmodel- The model usedusage.prompt_tokens/usage.completion_tokens- Token counts for cost trackingusage.time_to_first_token- Latency until first token (typically <100ms)usage.completion_tokens_per_sec- Token generation throughputusage.total_latency- Total response time
- Go to Settings > Community Nodes
- Click Install a community node
- Enter
n8n-nodes-infercom - Click Install
npm install n8n-nodes-infercom- Get your API key from the Infercom Cloud
- In n8n, go to Credentials > New Credential
- Search for "Infercom API"
- Enter your API key
- Add the Infercom node to your workflow
- Select your credentials
- Choose a model (e.g., "Llama 3.3 (70B)")
- Add messages:
- System message: Define the AI's behavior
- User message: Your question or prompt
- Configure options (temperature, max_tokens, etc.)
- Execute the workflow
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 are available in the examples folder:
- basic-chat-workflow.json - Simple chat completion with system and user messages
To use an example:
- Download the JSON file
- In n8n, go to Workflows > Import from File
- Select the downloaded file
- Update the credentials to use your Infercom API key
- Select a model from the dropdown
MIT License - see LICENSE.md