# 기본 플로우 목록

* 기본 플로우는 사용자가 정의한 플로우가 아닌, 시스템 내부적으로 사용하는 플로우를 의미합니다. 사용자가 아무것도 입력하지 않거나 플로우를 중단하고 싶다고 말하는 등 다양한 케이스에 대응하기 위해 기본적으로 내장되어 있는 플로우들이 존재합니다.

| 플로우 이름                         | 설명                                     |
| ------------------------------ | -------------------------------------- |
| pattern\_continue\_interrupted | 대화가 중단된 후 다시 시작할 때 사용하는 플로우            |
| pattern\_correction            | 사용자가 이전 입력을 수정하고자 할 때 사용하는 플로우         |
| pattern\_cancel\_flow          | 현재 진행중인 플로우를 취소할 때 사용하는 플로우            |
| pattern\_skip\_question        | 정보 수집 단계를 건너뛰고자 할 때 사용하는 플로우           |
| pattern\_chitchat              | 일상적인 대화를 처리하는 플로우                      |
| pattern\_completed             | 플로우가 완료되었을 때 사용하는 플로우                  |
| pattern\_clarification         | 사용자의 의도를 명확히 하기 위해 사용하는 플로우            |
| pattern\_internal\_error       | 내부 오류 발생 시 사용하는 플로우                    |
| pattern\_cannot\_handle        | 처리할 수 없는 요청에 대응하는 플로우                  |
| pattern\_human\_handoff        | 상담원 연결이 필요할 때 사용하는 플로우                 |
| pattern\_session\_start        | AI 어시스턴트가 선제적으로 대화를 시작할 때 사용하는 플로우     |
| pattern\_validate\_slot        | 비즈니스 로직과 독립적으로 슬롯 값의 실시간 유효성을 검사하는 플로우 |
| pattern\_repeat\_bot\_messages | 이전 메시지를 반복해서 보여줄 때 사용하는 플로우            |
| pattern\_user\_silence         | 사용자가 일정 시간 응답이 없을 때 사용하는 플로우           |


---

# 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://genos-docs.gitbook.io/default/v1.7.5.1/taskflow/manual/builder/default_flow_list.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.
