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

# Projects overview

> Top-level containers for training runs tied to a GenAI use case.

A **project** is the top-level container in Luna Studio. It groups training runs that share a goal — typically improving a single GenAI application or use case within a given domain.

The **Projects** page is the home of the app at `/{org}` (and the Luna Studio logo always returns you here).

<Frame caption="Projects page listing every project in your organization">
  <img src="https://mintcdn.com/v2galileo/-aQkdd7oOglUYIo1/images/luna-studio/projects/projects-home.png?fit=max&auto=format&n=-aQkdd7oOglUYIo1&q=85&s=e38651fd5806996a0455aaa9c70c0caf" alt="Projects page" width="1024" height="639" data-path="images/luna-studio/projects/projects-home.png" />
</Frame>

## Projects table

The projects table shows every project in your org, with these columns:

| Column       | What it shows                                                                     |
| ------------ | --------------------------------------------------------------------------------- |
| Project name | The name you gave the project.                                                    |
| Metrics      | Outline-style chips listing the metrics produced by this project's training runs. |
| Created at   | When the project was first created.                                               |
| Last run     | When the most recent run was launched.                                            |
| Actions      | A `…` menu with **Delete project**.                                               |

Click any row to open the project's [Training runs](/luna-studio/ui/projects/training-runs-home) page.

## Top-bar actions

* **Search** — the input on the right of the page header filters projects by name.
* **New project** — primary button on the right. Opens the create project modal.

## Naming projects

There's no strict format, but a few patterns work well:

* **GenAI use case** — `customer-support-copilot`, `enterprise-search-assistant`.
* **Team or domain + use case** — `sales-engineering-assistant`, `hr-policy-assistant`.
* **Versioned** — `customer-support-copilot-v2`, `enterprise-search-assistant-v3` for iterating on the same use case.

Avoid spaces (use hyphens or underscores) and keep names short — they appear in breadcrumbs throughout the app.

## Delete a project

Open the `…` action menu on a project row and click **Delete project**. The action is destructive — Luna Studio will prompt you to confirm before deleting.

<Warning>Deleting a project removes all of its training runs from Luna Studio. **Registered metrics** are not affected — they remain in the [Galileo metrics store](/concepts/metrics/overview) until you delete them there.</Warning>

## How projects relate to other concepts

```mermaid theme={null}
flowchart LR
  Org["Organization"] --> ProjectA["Project A"]
  Org --> ProjectB["Project B"]
  ProjectA --> RunA1["Run 1"]
  ProjectA --> RunA2["Run 2"]
  ProjectA --> RunA3["Run 3"]
  RunA1 --> Metric1["Metric (fine-tuned)"]
  RunA2 --> Metric2["Metric (registered)"]
```

* Integrations and datasets are **org-scoped** — they're shared across every project.
* Runs and metrics are **project-scoped** — they live inside one project.

## Where to go next

<CardGroup cols={2}>
  <Card title="Training runs home" icon="list" href="/luna-studio/ui/projects/training-runs-home">
    The main project workspace: stats, filters, and the runs table.
  </Card>

  <Card title="Creating a new run" icon="wand-magic-sparkles" href="/luna-studio/ui/runs/new-run/overview">
    The four-step flow for launching a training run.
  </Card>
</CardGroup>
