Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mind-e.co/docs/llms.txt

Use this file to discover all available pages before exploring further.

This guide walks you through creating an AI agent, uploading a document, testing it, and embedding it on your website.

Prerequisites

1

Create an agent

  1. Go to your dashboard and click Create Agent
  2. Enter a name and description for your agent
  3. Select a category (Content, Support, Education, or Custom)
  4. Write a system prompt that tells the agent how to behave — for example:
You are a friendly customer support assistant for Acme Corp.
Answer questions based on the provided context. If you don't know
the answer, say so and suggest contacting support@acme.com.
  1. Choose an AI model (GPT-4o is the default) and set the temperature (0.7 is balanced)
  2. Click Create
2

Upload a document

  1. Open your agent and go to the Sources tab
  2. Click Upload Document
  3. Select a file — supported formats:
FormatExtensionMax size
PDF.pdf50 MB, up to 500 pages
Word.docx50 MB, up to 300 pages
Text.txt10 MB
Markdown.md10 MB
  1. Wait for processing — the document goes through conversion, chunking, and embedding
  2. Once the status shows Embedded, your agent can answer questions from this document
You can also add web sources by entering a URL, or create text snippets for custom content.
3

Test in the playground

  1. Go to the Playground tab
  2. Type a question related to your uploaded document
  3. The agent responds using relevant content from the document, with source attribution
  4. Try different questions to see how the agent retrieves information
4

Embed on your website

Go to the Integration tab to get your embed code. You have two options:Option A: Chat widget (recommended)Add this script before the closing </body> tag on your website:
<script>
  window.mindeConfig = {
    agentId: 'your-agent-id'
  };
</script>
<script src="https://widget.mind-e.co/widget.js" defer></script>
This adds a floating chat bubble to your site.Option B: IframeEmbed the chat directly into your page:
<iframe
  src="https://mind-e.co/chat/your-agent-id"
  width="100%"
  height="600px"
  frameborder="0"
  style="border: none; border-radius: 12px;"
  title="Chat">
</iframe>

What’s next?

Core Concepts

Understand how agents, documents, RAG, and credits work together.

Customize your agent

Fine-tune your agent’s behavior with system prompts, models, and temperature.

Knowledge base

Learn how to manage documents, web sources, and text snippets.

Chat appearance

Customize the look and feel of your chat widget.