# Getting started

Include the Singular Graphics SDK JavaScript library in your HTML code:

```html
<head>
  <!-- Include the Singular Graphic SDK JavaSrcipt library -->
  <script src="https://app.singular.live/libs/singulargraphics/1.0.0/singulargraphics.js"></script>
</head>
```

Add a `div` to your HTML code for a non-interactive Singular overlay instance:

```html
<body>
    <!-- define iframe for a non-interactive Singular player instance -->
    <iframe id="SingularOverlay"
      style="width:720px; height: 400px;"
      src="https://app.singular.live/singularplayer/client">
    </iframe>
</body>
```

Or add a `div` to your HTML code for an interactive Singular overlay instance:

```html
<body>
    <!-- define iframe for a non-interactive Singular player instance -->
    <iframe id="SingularOverlay"
      style="width:720px; height: 400px;"
      src="https://app.singular.live/singularplayer/client?interactive=1">
    </iframe>
</body>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.singular.live/software-development-kits/graphics-sdk/getting-started.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
