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

# Quickstart

> start in few steps

<Tip>Horay.ai provides one click access to top open-source models,  <a href="https://dash.horay.ai/">try it in playground!</a></Tip>

#### Horay.ai API Key Creation

<Steps>
  <Step title="Account Creation">
    Create a Horay.ai account. <a href="https://dash.horay.ai">click here</a>
  </Step>

  <Step title="API Keys Creation">
    Create API Keys, <a href="https://dash.horay.ai/account/ak">click here</a> .
    Must keep it in a secure location.
  </Step>
</Steps>

#### Start

a text model helps you to get started by python. if you want to explore more, please refer to the <a href="/api-reference/introduction">API Reference</a>.

<Steps>
  <Step title="development environment">
    1. Python version >=3.7.1
    2. install the OpenAI

    ```bash theme={null}
      pip install --upgrade openai
    ```
  </Step>

  <Step title="Enjoy">
    Sending the first API Request.

    ```python theme={null}
    from openai import OpenAI
    client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.horay.ai/v1")
    response = client.chat.completions.create(
      model='meta-llama/Meta-Llama-3.1-8B-Instruct',
      messages=[
            {'role': 'user',
            'content': "Unlock your AI Creativity with Horay.ai's Blazing Fast, Affordable and Production Ready API, What impact will it have on the industry?"}
        ],
        stream=True
    )
    for chunk in response:
      print(chunk.choices[0].delta.content)
    ```
  </Step>

  <Step title="Contact US">
    If you have any questions, welcome to feedback through the contact [support@horay.ai](mailto:support@horay.ai).
  </Step>
</Steps>
