# Add Images in Instructions

You can include images in your prompts by hosting them online and then embedding them with Markdown.

This guide uses [**Postimages**](https://postimg.cc/) — a free, no-signup image hosting site.

***

### **Step 1 — Upload Your Image**

1. Go to [**https://postimg.cc/**](https://postimg.cc/)
2. Click **Choose images** and select your image file.
3. Wait for the upload to finish.

***

### **Step 2 — Get the Direct Image URL**

1. Once uploaded, you’ll see several link formats.
2. Copy the **Direct Link** — it will look like:

   ```
   https://i.postimg.cc/W15gQMD7/image_name.png
   ```

***

### **Step 3 — Insert Into Markdown**

Use the Markdown image syntax:

```markdown
![image_name](https://i.postimg.cc/W15gQMD7/image_name.png)
```

**Example:**

```markdown
![snowboard](https://i.postimg.cc/W15gQMD7/snowboard.png)
```

This will display directly in your prompt or document:

***

### **Step 4 — Add To Your Instruction**

Paste your Markdown directly into your instruction.\
The assistant will see and process the image.

***

#### ✅ Tips

* Use **PNG** or **JPG** for best compatibility.
* The image URL **must be public** — if it opens in your browser without login, it will work.
* Keep image file sizes under **5MB** for faster loading.


---

# 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://doc.aissist.io/tutorial/add-images-in-instructions.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.
