Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions en/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
* [Azure ChatOpenAI](integrations/langchain/chat-models/azure-chatopenai-1.md)
* [NVIDIA NIM](integrations/langchain/chat-models/nvidia-nim.md)
* [ChatCometAPI](integrations/langchain/chat-models/chatcometapi.md)
* [ChatEmpirioLabs](integrations/langchain/chat-models/chatempiriolabs.md)
* [ChatAnthropic](integrations/langchain/chat-models/chatanthropic.md)
* [ChatCohere](integrations/langchain/chat-models/chatcohere.md)
* [Chat Fireworks](integrations/langchain/chat-models/chat-fireworks.md)
Expand Down
1 change: 1 addition & 0 deletions en/integrations/langchain/chat-models/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Chat models take a list of messages as input and return a model-generated messag
* [NIBittensorChat](broken-reference)
* [ChatAnthropic](chatanthropic.md)
* [ChatCohere](chatcohere.md)
* [ChatEmpirioLabs](chatempiriolabs.md)
* [Chat Fireworks](chat-fireworks.md)
* [ChatGoogleGenerativeAI](google-ai.md)
* [ChatGooglePaLM](broken-reference)
Expand Down
20 changes: 20 additions & 0 deletions en/integrations/langchain/chat-models/chatempiriolabs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
description: Wrapper around EmpirioLabs chat models that use the OpenAI compatible Chat endpoint.
---

# ChatEmpirioLabs

## Description
[EmpirioLabs](https://empiriolabs.ai) is a unified inference platform that provides access to frontier chat models such as Qwen3.7, DeepSeek V4, GLM-5.1, Kimi K2.7 Code, and MiniMax M3 through a single OpenAI compatible API. The ChatEmpirioLabs node lists the available chat models for you and streams responses out of the box.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The description lists non-existent or futuristic model versions (e.g., Qwen3.7, DeepSeek V4, GLM-5.1, Kimi K2.7 Code). Please update these to currently available models (such as Qwen 2.5, DeepSeek V3, GLM-4, or Kimi) to ensure the documentation is accurate and helpful for users.

Suggested change
[EmpirioLabs](https://empiriolabs.ai) is a unified inference platform that provides access to frontier chat models such as Qwen3.7, DeepSeek V4, GLM-5.1, Kimi K2.7 Code, and MiniMax M3 through a single OpenAI compatible API. The ChatEmpirioLabs node lists the available chat models for you and streams responses out of the box.
[EmpirioLabs](https://empiriolabs.ai) is a unified inference platform that provides access to frontier chat models such as Qwen 2.5, DeepSeek V3, GLM-4, and Kimi through a single OpenAI compatible API. The ChatEmpirioLabs node lists the available chat models for you and streams responses out of the box.


## Prerequisite

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Since there are multiple items listed in this section, the heading should be pluralized to 'Prerequisites' for grammatical correctness and consistency with other integration pages.

Suggested change
## Prerequisite
## Prerequisites

1. Refer to the official [EmpirioLabs documentation](https://docs.empiriolabs.ai).
2. Create an API key from your [EmpirioLabs dashboard](https://platform.empiriolabs.ai/dashboard/api-keys).

## Step by Step Guide
1. **Chat Models** > Drag the **ChatEmpirioLabs** node.
2. Create a new credential with your EmpirioLabs API key.
3. Pick a model from the **Model Name** list (for example `qwen3-7-plus`, `deepseek-v4-pro`, `glm-5-1`, or `kimi-k2-7-code`). The list is populated from the EmpirioLabs models catalog.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The example model names listed here (e.g., qwen3-7-plus, deepseek-v4-pro, glm-5-1, kimi-k2-7-code) are non-existent or futuristic. Please replace them with actual, currently available model identifiers (e.g., qwen-2.5-72b-instruct, deepseek-chat, glm-4).

Suggested change
3. Pick a model from the **Model Name** list (for example `qwen3-7-plus`, `deepseek-v4-pro`, `glm-5-1`, or `kimi-k2-7-code`). The list is populated from the EmpirioLabs models catalog.
3. Pick a model from the **Model Name** list (for example 'qwen-2.5-72b-instruct', 'deepseek-chat', or 'glm-4'). The list is populated from the EmpirioLabs models catalog.

4. (Optional) Click **Additional Parameters** to adjust Max Tokens, Top Probability, penalties, Timeout, or to override the Base Path.

The node connects to the EmpirioLabs API at `https://api.empiriolabs.ai/v1`, so any model available on your account can be used the same way you would use any other OpenAI compatible Chat Model in Flowise.