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

# Quickstart

> Start running ML models in minutes.

## Clone the repo

Clone the codebase locally by running the following:

```bash theme={null}
git clone https://github.com/luminal-ai/luminal
cd luminal
```

## Hello World

Simple examples demonstrate how a library works without diving in too deep. Run your first Luminal code like so:

```bash theme={null}
cd ./examples/simple
cargo run --release
```

Great! You've ran your first Luminal model!

## Run Llama 3

Run the following to start generating text with Llama 3 8B on a CUDA device:

```bash theme={null}
cd ./examples/llama
# Download the model
uv run --script ./setup/setup.py
# Run the model
cargo run --release
```
