> For the complete documentation index, see [llms.txt](https://doc.nextbot.ru/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.nextbot.ru/functional/knowledge-base/tablicy.md).

# Таблицы

В сервисе **Nextbot** доступна функция — **создание Таблиц**. Вы можете создавать таблицы вручную или загружать их из файлов в формате CSV или JSON.

#### Основные преимущества таблиц:

* возможность загружать большое количество информации любого типа
* экономия токенов в ситуациях, когда не требуется обращение к базе данных (в отличие, например, от Базы Знаний, когда токены тратятся при генерации каждого сообщения, т.к. данные из Базы Знаний всегда находятся в контексте ИИ-агента)
* нет необходимости в подключении дополнительных интеграций типа [Notion](/functional/integrations/notion.md), [Google Таблицы](/functional/integrations/google-tablicy.md).

{% hint style="warning" %}
Для использования Таблиц необходимо приобрести подписку уровня **Premium**.
{% endhint %}

**Доступные способы создания таблиц:**

1. [**Создание вручную**](/functional/knowledge-base/tablicy/sozdanie-tablicy-vruchnuyu.md)

   Подходит, если вы хотите быстро создать таблицу с нуля и внести данные вручную.\
   Идеально для небольших таблиц, тестирования логики или в случаях, когда готовый файл с данными отсутствует.

   **Примеры использования:**

   * Создание списка услуг вручную.
   * Добавление тестовых данных для отладки сценариев.
2. [**Создание таблицы из файла**](/functional/knowledge-base/tablicy/sozdanie-tablicy-iz-faila.md)

   Удобно использовать, если у вас уже есть готовый список данных, например, экспорт из CRM, Excel или другой системы.\
   Позволяет быстро загрузить большой объем информации без ручного ввода.

   **Примеры использования:**

   * Загрузка базы товаров или услуг.

Для поиска по таблицам необходимо создавать функцию. Подробности в статье [**Поиск в таблице**](/functional/knowledge-base/tablicy/poisk-v-tablice.md)

<h2 align="center"><strong>Видеоурок:</strong> Таблицы</h2>

Команда Nextbot подготовила подробный видеоурок о работе с Таблицами.

**Посмотреть на YouTube:** <https://www.youtube.com/watch?v=-VKrXAY8N2o>

**Посмотреть на Rutube:** <https://rutube.ru/video/private/2a3a3028537938d0d4f5435604c570f0/?p=8ypJbkRE9rkLIuyZpNvOAA>


---

# 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, and the optional `goal` query parameter:

```
GET https://doc.nextbot.ru/functional/knowledge-base/tablicy.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
