# Conversation Flow

When entering the bot we will configure the Conversation Flow. The flow has the shape of a flowchart that can be defined by several Actions (also known as Flow Steps).

The purpose of the flow is for the bot to understand which action to perform at each point in the conversation with the user.

A flow can represent an activity the bot can perform. An example of an activity would be, for example, send an initial "hello", check and save the user's address. Therefore a bot can have multiple flows, and consequently can perform various activities.

## Standard Flows

Every bot created in CosmoBots has 2 standard flows:

* **Welcome:** flow that can be executed in 2 cases: 1) the first time the user interacts with the bot, or 2) every time the [conversation context](/definitions.md#conversation-context) is restarted.
* **Exception:** flow executed whenever the bot does not know which action to perform. So the ideal is to build flows and NLP good enough that this flow is little used.

Let's now comment on the Steps (or types of actions) that can be performed today in the flow


---

# Agent Instructions: 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://help-en.cosmobots.io/bot-builder/conversation-flow.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.
