> For the complete documentation index, see [llms.txt](https://gdplabs.gitbook.io/glchat/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gdplabs.gitbook.io/glchat/developer-documentation/glchat-pipeline/pipeline/other-pipeline.md).

# Other Pipeline

### No-Op Pipeline

The No-Op (No Operation) pipeline skips retrieval entirely. The LLM receives only the conversation history and the query — no documents, no web search, no database queries.

**When to use it:**

* The chatbot should rely purely on the model's own knowledge
* Retrieval is not applicable
* No knowledge base is configured for the chatbot

The No-Op pipeline still receives the preprocessing output and still passes through postprocessing — only the retrieval and knowledge-augmented generation steps are skipped.

***

### GLChat Live Pipeline

The GLChat Live pipeline enables real-time, streaming conversations using the Gemini Live model. Unlike the Standard RAG pipeline, it is designed for continuous, low-latency interaction rather than single-turn question and answer.

**When it is used:**

GLChat Live is used when user want an interactive voice and live conversation scenarios

***

### Deep Research Pipeline

The Deep Research pipeline is designed for queries that require broad synthesis across multiple sources rather than a single targeted answer. It runs a multi-step research analysis and formats web-sourced references for the response.

**When it is used:**

Deep Research is activated when the request's `search_type` is one of:

* `ESSENTIALS_DEEP_RESEARCH`
* `COMPREHENSIVE_DEEP_RESEARCH`
* `INTERNAL_DEEP_RESEARCH`

It also requires the `BACKEND_ESSENTIALS_DEEP_RESEARCH_PIPELINE_HANDLER` environment variable to be configured. The routing stage directs the message to a dedicated internal research handler before the pipeline executes.

***

### External Pipeline

The External Pipeline routes a request to any external service that exposes an OpenAI-compatible API endpoint. The project configuration provides the webhook URL, API key, and model name — GLChat creates a compatible LM invoker at runtime and delegates generation to the external service entirely.

**When it is used:**

This pipeline is configured per chatbot via the external pipeline metadata. The chatbot must have `webhook_url`, `api_key`, and `external_model_name` set. No special routing flag is needed — if the chatbot is configured with this pipeline, it will always route here.

For more detailed information, refer to [this page](/glchat/developer-documentation/glchat-pipeline/pipeline/custom-pipeline-development-guide/external-pipeline.md)

***

### Datasaur External Pipeline

The Datasaur External pipeline integrates GLChat with Datasaur's hosted LLM platform. It is designed specifically for chatbots where Datasaur manages the model and knowledge base, providing native citation support and Datasaur-specific reference formatting.

**When it is used:**

This pipeline is configured per chatbot. It requires citation support to be enabled (`citations_enabled: true`) in the chatbot configuration. The routing stage directs the message to this pipeline based on the chatbot's pipeline type assignment.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://gdplabs.gitbook.io/glchat/developer-documentation/glchat-pipeline/pipeline/other-pipeline.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
