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

# search\_terms entity

## Steps

1. On the left Menu click `Entity`.
2. Click the blue button that says `Create entity`.
3. Name it `search_terms`.
4. Type in the terms as in the image below.
5. Click save.
6. 🌟You've created your `search_terms` entity.

The final result should look like this:

![screenshot of search\_terms entity](/files/-LHfnc4r9F0CovExs8FV)

If you prefer instead of typing each one, here's the CSV you can copy and paste:

1. Click the more ( 3 dots) button
2. Click `Switch to raw mode`
3. Paste the data below within the CSV tab

{% code title="search\_terms" %}

```
"1","1","1st","first","first option","the first one","name"
"2","2","2nd","second","second option","the second one","skills","skill"
```

{% endcode %}

4\. Click `Save`

## **Explanation:**

The user is welcome to the conversation with the following message:&#x20;

&#x20;Agent says: `Hi! Welcome to the GDG Cloud directory conversational app. Would you like to find a lead by 1. Name, 2. Skill?`

The user then can reply stating they'd like one of the options.&#x20;

User says: `I would like to to search by skill.`

In order to being able to redirect our users to the correct flow and ask the right question. We create another entity that will handle what the user types in.

Our `search_terms` entity will have 2 values :&#x20;

`name` (or 1)

`skill` (or 2)&#x20;


---

# 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://amandacavallaro.gitbook.io/convapp/search_terms-entity.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.
