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

# Run your first prompt

> Create and run your first prompt in the Adaline Playground

## 1. Sign up

If you don't have an Adaline account yet, create one by signing up at [app.adaline.ai](https://app.adaline.ai/sign-up?utm_source=adaline.ai).
After you sign up and log in, Adaline creates a sample project called `Get Started`. Open the project picker dropdown and select `Get Started` to follow these quickstarts. The project includes starter resources you can use to run a prompt and try evaluations.

## 2. Setup an AI provider (optional)

New Adaline accounts include up to three free Playground and evaluation runs, so you can try the product before adding provider credentials. This step is optional for the first few runs, but highly recommended if you plan to keep using Playground, run evaluations, or enable continuous evaluations.

After the free runs are used, add your own AI provider credentials so Adaline can call the models you choose.

Open workspace settings, choose **Providers**, and add the provider credentials you want Adaline to use. For the full walkthrough, see [Configure AI provider](/docs/admin/configure-ai-provider/overview).

<img src="https://mintcdn.com/adaline/eZjESTWOo39yRuM9/images/admin/configure-ai-provider.gif?s=1efa5ca1ff3d380eb1f897040e686c27" alt="Configure an AI provider in Adaline" title="Configure an AI provider in Adaline" style={{ width:"100%" }} width="960" height="553" data-path="images/admin/configure-ai-provider.gif" />

## 3. Setup your prompt

A project in Adaline can be considered as a representation of your AI agent (or application, workflow, etc.).
Or all the prompts, tools, evaluations, datasets, logs, etc. of an AI agent are contained within a project in Adaline.

After sign-up, open the project picker dropdown and select the sample project called `Get Started`.
The sample project includes a starter prompt and dataset. In this guide, open the prompt called `Prompt`.
Essentially, this is an AI agent with a single prompt.

<Steps>
  <Step>
    Click on `Prompt` to open its editor (left) and playground (right):

    <img src="https://mintcdn.com/adaline/6qZ1-Sm8NeEttI_w/images/get-started/open-get-started-prompt.gif?s=41430fca1e82550d9d9590375211c27f" alt="Open the starter prompt from the Get Started project" title="Open the starter prompt from the Get Started project" style={{ width:"100%" }} width="960" height="661" data-path="images/get-started/open-get-started-prompt.gif" />
  </Step>

  <Step>
    Click on `Select a model` and choose an available model. If you added an AI provider above, choose one of your configured models.

    <img src="https://mintcdn.com/adaline/6qZ1-Sm8NeEttI_w/images/get-started/select-a-model.png?fit=max&auto=format&n=6qZ1-Sm8NeEttI_w&q=85&s=88858413c81ba59a7758ab3beb856fde" alt="Select an LLM" title="Select an LLM" style={{ width:"100%" }} width="2208" height="1614" data-path="images/get-started/select-a-model.png" />
  </Step>

  <Step>
    Click on ellipsis (three dots) next to the model to configure parameters such as temperature, max tokens, etc.

    <img src="https://mintcdn.com/adaline/6qZ1-Sm8NeEttI_w/images/get-started/select-model-params.png?fit=max&auto=format&n=6qZ1-Sm8NeEttI_w&q=85&s=ca236fe8a0b2bc20c7e9e47d5e46f579" alt="Edit LLM parameters" title="Edit LLM parameters" style={{ width:"100%" }} width="2203" height="1600" data-path="images/get-started/select-model-params.png" />
  </Step>

  <Step>
    **(Optional)**
    Update your prompt in the editor on the left. A prompt is made up of **messages**, each with a **role**:

    * **System** — sets the AI's behavior, personality, and constraints. This message persists across conversation turns.
    * **User** — represents the human input or question the AI should respond to.
    * **Assistant** — defines the model's responses.

    Use `{{variable_name}}` syntax to insert placeholders that will be replaced with actual values at runtime. For example, a user message might contain `{{question}}` to represent the question you want the model to answer.

    The sample prompt already has a system message and a user message with a variable — feel free to edit them or start from scratch.

    <img src="https://mintcdn.com/adaline/6qZ1-Sm8NeEttI_w/images/get-started/update-prompt.png?fit=max&auto=format&n=6qZ1-Sm8NeEttI_w&q=85&s=e9f3ae5820589761cadf2c15cd02c495" alt="Update prompt" title="Update prompt" style={{ width:"100%" }} width="1018" height="812" data-path="images/get-started/update-prompt.png" />
  </Step>

  <Step>
    **(Optional)**
    Update the prompt variables in the **Variables** section in the bottom right to any value you want to test your prompt with.

    Variables are the runtime values that replace `{{placeholders}}` in your messages. They typically represent end-user inputs, additional context, or outputs from previous prompts.

    <img src="https://mintcdn.com/adaline/6qZ1-Sm8NeEttI_w/images/get-started/update-variable.png?fit=max&auto=format&n=6qZ1-Sm8NeEttI_w&q=85&s=e776194167cc5921675037503745fc2b" alt="Update prompt variables" title="Update prompt variables" style={{ width:"100%" }} width="1544" height="578" data-path="images/get-started/update-variable.png" />
  </Step>
</Steps>

## 4. Run your Prompt

Click on **Run** button (top right) or press <kbd>Cmd</kbd> + <kbd>Enter</kbd> or <kbd>Ctrl</kbd> + <kbd>Enter</kbd> to run your prompt.
Within seconds, you will start seeing the model's response streaming in the playground with the role `Assistant`.

<img src="https://mintcdn.com/adaline/6qZ1-Sm8NeEttI_w/images/get-started/run-prompt.gif?s=a874d3dc7447d63b5e4646afdb95f470" alt="Run prompt" title="Run prompt" style={{ width:"100%" }} width="960" height="668" data-path="images/get-started/run-prompt.gif" />

Congratulations! You just ran your first prompt in Adaline.

Next, run the [Run your first evaluation](/docs/get-started/run-your-first-evaluation) quickstart to add evaluators that measure your prompt's quality and performance. When Adaline has evaluators that match your prompt and production traffic, Improve cycles have stronger evidence for judging candidate prompt changes.

Read more about [Prompts](/docs/prompts/overview)
