Duaer

AI, deploy, and more

Retrieve relevant context with RAG in Duaer

Write documents into a vector store, then retrieve pieces for the model when someone asks. Duaer RAG usually has a load branch and a retrieve branch.

What RAG is

RAG combines a language model with external material. On a question, relevant pieces are retrieved and handed to the model, instead of relying only on what the model saw in training. A vector store searches by semantic closeness, not simple keyword match.

Insert into the vector store

  1. Fetch the source files or text with nodes.
  2. Add a vector-store node and choose insert documents.
  3. Connect an embedding model that turns text into vectors.
  4. Split into chunks with a data loader. Add metadata to chunks when you need it.

Retrieve

Attach the same vector store as a tool on an Agent, using the same embedding model you used on insert, or query with the vector-store node directly. Set how many chunks to return, and include metadata when you need it.

Do not stuff a whole long document into every prompt. If you change the embedding model and do not rebuild the store, retrieval answers the wrong thing. Template notes link here.

Questions

What does RAG mean in Duaer?

Write documents into a vector store, retrieve matching pieces when someone asks, and give those pieces to the model as context. It is not stuffing the whole file into every prompt.

In Duaer, do you rebuild the vector store when you change the embedding model?

Yes. Insert and retrieve must use the same embedding model. If you change the model and do not rebuild the store, retrieval answers the wrong thing.

In this section

AI

Build your first AI Agent in Duaer

Connect a chat model to an AI Agent in Duaer, then add tools when you need them. This page is the smallest digital organization that runs.

AI

Use Chat hub in Duaer

Chat hub gives people a chat entry without the canvas. From Duaer v3 it is off by default. You can turn it on temporarily with DUAER_ENABLED_MODULES.

AI

Use $fromAI for tool parameters in Duaer

In Duaer: $fromAI marks a parameter the AI Agent fills when it calls a tool. Keys may only use letters, numbers, underscores, and hyphens.

AI

Use metrics to measure quality in Duaer

In Duaer: Run an AI digital organization against a test set and record scores you calculated, so you can compare versions over time.

AI

Fix common evaluation issues in Duaer

In Duaer, when triggers, field maps, or chat output fight the evaluation nodes, check the wiring first.

AI

Turn on the Duaer MCP server

In Duaer, expose the instance as an MCP server so outside clients operate digital organizations with permission. Turn access on in the instance first.

AI

Draft Duaer digital organizations with AI

In Duaer, describe your goal in plain language. The builder generates or edits digital-organization nodes. You still confirm on the canvas.

AI

Connect an MCP client to Duaer

After MCP access is on in Duaer, put the connection URL and auth into the client config.

AI

Use Duaer orgifyDesk on cloud

Duaer orgifyDesk on cloud is toggled in Settings and helps edit digital organizations.

AI

Manage MCP access on Duaer cloud

After you turn on MCP access on a Duaer cloud instance, outside clients can connect.

Deploy

Set up Duaer orgifyDesk on a self-hosted instance

Self-hosted Duaer configures Duaer orgifyDesk in its setup wizard in Settings. Sandbox and web search are optional. Prepare environment variables before startup.

Deploy

Host Duaer with Docker

From Duaer v3, Docker is the only supported deployment. If the instance check finds you are not in a container, it opens this page.

Deploy

Set up task runners as an external process in Duaer

Duaer deprecates the internal task runner. Run the runner separately, set it to external, and share DUAER_RUNNERS_AUTH_TOKEN with the launcher.

Deploy

Configure binary storage with environment variables in Duaer

In Duaer, use environment variables for binary storage mode and path. The main process and workers must share one configuration.

Deploy

Configure security environment variables in Duaer

In Duaer, security switches such as SSRF are configured with environment variables. From v3 the default blocked IP ranges are wider, and the check links here.

Deploy

Configure digital-organization environment variables in Duaer

In Duaer, environment variables can set behavior such as the default caller policy. If the default is still any, the v3 check reports it and opens this page.

Deploy

Manage security policies in Duaer

In Duaer, the security page in Settings points docs here for instance-level security policy entry points.

More

Create and edit credentials in Duaer

In Duaer, credentials are stored on the instance and protected by the encryption key. Nodes reference a credential instead of putting secrets in parameters.

More

Use end-user credentials in Duaer

In Duaer, end-user credentials belong to the end user’s own connections. At runtime the triggerer’s account is used, not one shared secret.

More

Configure digital-organization settings in Duaer

In Duaer, settings include timezone, error handling, and caller policy. After v3 removes “Any workflow”, the check links to the who-can-call section.

More

Configure an embedded deployment in Duaer

When you embed Duaer in another product, configuration can overwrite credentials and related behavior.

More

Open the courses entry in Duaer

In Duaer, the Courses link in the product opens this page. It is an entry to practice notes, not a separate video school.

More

Understand how items flow in Duaer

In Duaer, this chapter explains what one input looks like and how a node runs with many items.

More

Looping docs moved in Duaer

In Duaer, legacy URL. Per-item execution and Execute Once are on the flow-logic looping page.

More

Use the Code node instead in Duaer

In Duaer, the Function node is removed. Write JavaScript in the Code node. This URL remains so old links are not empty.

AI

How Duaer orgifyDesk edits a digital organization

Duaer orgifyDesk changes only the nodes you named, and it replies in the interface language selected in the sidebar. Attachments you reject leave the conversation.

AI

Schedule a task for a Duaer digital employee

In Duaer, a digital employee task can run hourly, daily, weekly, monthly, or on a cron expression. A custom cron shows a readable sentence and the next run time.

AI

Install verified community nodes with Duaer MCP

In Duaer, a connected MCP client can install a verified community node. The client needs that permission, and it asks you before it installs.

AI

Connect Databricks Embeddings in Duaer

In Duaer, Embeddings Databricks is a sub-node on an AI node. It turns text into vectors.

AI

Set MiniMax output length in Duaer

In Duaer, MiniMax chat-model output length is Maximum Number of Tokens under the node’s Options. The ceiling follows the model you select.