> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tartini.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Set up clarifications

> Tell Tino when to ask the customer for more details before continuing the service.

export const Artigo = ({titulo, href, children}) => <a className="lista-artigos-item" href={href}>
    <span className="lista-artigos-texto">
      <span className="lista-artigos-nome">{titulo}</span>
      {children ? <span className="lista-artigos-desc">{children}</span> : null}
    </span>
    <svg className="lista-artigos-seta" viewBox="0 0 24 24" width="18" height="18" aria-hidden="true">
      <path d="M9 6l6 6-6 6" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
    </svg>
  </a>;

export const Lista = ({titulo, children}) => <div className="lista-artigos">
    {titulo ? <p className="lista-artigos-titulo">{titulo}</p> : null}
    <div className="lista-artigos-itens">{children}</div>
  </div>;

Clarifications teach Tino to recognize a vague or incomplete message and ask for the missing information before continuing.

<Note>
  Who sees this: Administrator and Company Manager. Requires the Scale plan.

  The Tartini interface is in Portuguese. Screen and button names appear here exactly as on screen, with the translation in parentheses.
</Note>

***

## Create a clarification

By default, no clarifications are set up.

Where to find it: **Cérebro > Operações > Esclarecimentos** (Brain > Operations > Clarifications).

<Steps>
  <Step title="Open the form">Click **Adicionar esclarecimento** (Add clarification).</Step>
  <Step title="Write the name">Fill in the title, for example "Clarificar produto de interesse".</Step>
  <Step title="Describe the situation">Explain when and how Tino should ask for clarification.</Step>
  <Step title="Save">Click **Salvar** (Save).</Step>
</Steps>

<Note>
  The title and description can't repeat across clarifications that are already set up. There's no limit on the number.
</Note>

***

## Use a ready-made template

Where to find it: **Cérebro > Operações > Esclarecimentos**, templates block, with suggestions such as "Esclareça mensagens curtas", "Detalhe o problema com o produto", and "Confirme o endereço de entrega".

<Steps>
  <Step title="Choose a template">Click one of the suggested templates, or **Explorar modelos** (Explore templates) to see them all.</Step>
  <Step title="Adjust the text">The form opens pre-filled with the template's title and description.</Step>
  <Step title="Save">Click **Salvar**.</Step>
</Steps>

***

## Turn a clarification on or off

Where to find it: inside the clarification card's edit view.

<Steps>
  <Step title="Open the card">Click the clarification you want to change.</Step>
  <Step title="Turn it on or off">Use the **Ativo**/**Inativo** (Active/Inactive) toggle.</Step>
  <Step title="Save">Click **Salvar**.</Step>
</Steps>

***

## Delete a clarification

Where to find it: inside the clarification card's edit view.

<Steps>
  <Step title="Open the card">Click the clarification you want to remove.</Step>
  <Step title="Click Delete">The button appears next to the edit fields.</Step>
  <Step title="Confirm">Confirm the deletion in the window that opens.</Step>
</Steps>

<Note>
  Deleting a clarification is different from deactivating it: deleting erases the record completely, while deactivating keeps it saved and lets you reactivate it later.
</Note>

***

## Review Tino's suggestions

Where to find it: **Cérebro > Operações > Esclarecimentos**, **Sugestões do Tino** (Tino's Suggestions) block, when there's one pending.

<Steps>
  <Step title="Read the suggestion">Check the title and the description.</Step>
  <Step title="Decide">Click **Aceitar** (Accept), **Editar** (Edit), or **Negar** (Deny).</Step>
</Steps>

<Note>
  A suggestion doesn't apply to service before it's accepted. Editing and saving already approves the clarification in the same action.
</Note>

***

## Frequently asked questions

<AccordionGroup>
  <Accordion title="What's the difference between Clarifications and Contact Fields?">
    Clarifications are free-text instructions for when the customer's message is vague, for example asking for more detail about a product. Contact fields are structured, with a key and a type, and collect permanent data on the person's record.
  </Accordion>

  <Accordion title="How many clarifications can I set up?">
    There's no limit on the number.
  </Accordion>

  <Accordion title="Can a clarification stay inactive without being deleted?">
    Yes, use the Ativo/Inativo (Active/Inactive) toggle inside the card's edit view.
  </Accordion>
</AccordionGroup>

***

## Related articles

<Lista>
  <Artigo titulo="Set up contact fields" href="/en/cerebro/qualificacao">Define the data Tino collects in the conversation.</Artigo>
  <Artigo titulo="Set up routing" href="/en/cerebro/roteamento">Define when Tino transfers to a person.</Artigo>
</Lista>


## Related topics

- [Set up routing](/en/cerebro/roteamento.md)
- [Set up the satisfaction survey](/en/atendimento/pesquisa-de-satisfacao.md)
- [Set up contact fields](/en/cerebro/qualificacao.md)
