> For the complete documentation index, see [llms.txt](https://docs.dreamerland.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dreamerland.ai/faq/prompt-syntax-and.md).

# Prompt syntax () and \[]

You can use () and \[] to adjust strength of the text.

() - emphasize a tag to make it more prominent in your generation&#x20;

\[] - de-emphasize a tag, meaning to lessen how much it affects the prompt, but not removing it from the generation altogether.

\[keyword] decrease the strength by a factor of 0.9 and is the same as (keyword:0.9).&#x20;

You can use multiple of them, just like in Algebra. The effect is multiplicative.&#x20;

(keyword) = 1.1 \
((keyword)) = 1.21 \
(((keyword))) = 1.33&#x20;

() is 1.1 , (( )) is 1.1x1.1 = 1.21 , ((( ))) =1.1x1.1x.1.1 =1.33

Similarly, the effects of using multiple \[] are&#x20;

\[keyword] = 0.9 \
\[\[keyword]] = 0.81\
 \[\[\[keyword]]] = 0.73


---

# 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:

```
GET https://docs.dreamerland.ai/faq/prompt-syntax-and.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.
