> ## Documentation Index
> Fetch the complete documentation index at: https://awdev.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Build your first assistant within minutes.

In this section, you'll learn (to):

* build an assistant
* embed a tool (Google search)

## Install leicht

First things first, install the `leicht` package. You can install it using `pip` or from source.

<CodeGroup>
  ```bash Pip
  $ pip install leicht
  ```

  ```bash Source
  $ git clone https://github.com/ramptix/leicht
  $ cd leicht
  $ pip install .
  ```
</CodeGroup>

### Build an Assistant

We'll be building an assistant using the `Assistant` class. The LLM of choice in this example is `G4F` <sup>1</sup>.

Here, we'll add the "search" tool to allow the LLM to look up resources online.

```python app.py
from leicht import Assistant
from leicht.tools import Google

# Build an assistant
assistant = Assistant(
  "You're a helpful assistant.", # System prompt
  llm="g4f", # Specify the g4f LLM *trial only*
  tools=[Google()]
)

# Run the assistant
assistant.run("Is The Matrix 5 out yet?")
```

<sup>1</sup>G4F – Although `G4F` is free, it should ONLY be used for trial and NOT for production.

## Read More

Learn more about Leicht.

<CardGroup>
  <Card title="Prompts" icon="paragraph" href="/prompts">
    Master the Prompts API and get a tailored voice.
  </Card>

  <Card title="Build Your Tool" icon="toolbox" href="/tools">
    Build your own tool using the Tools API.
  </Card>

  <Card title="Host on a Custom Domain" icon="browser" href="/settings/custom-domain/subdomain">
    Keep your docs on your own website's subdomain.
  </Card>
</CardGroup>
