> For the complete documentation index, see [llms.txt](https://docs.ojin.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ojin.ai/getting-started/quickstart.md).

# Quickstart

> Get up and running with Ojin in minutes.

This guide walks you through both paths — deploying a full conversational agent with the no-code Human Agent app, or driving a real-time face model from your own pipeline with the Python SDK.

## Step 1: Create an API Key

[Get your API key from the Ojin dashboard](/getting-started/authentication.md). This will allow you to use Ojin in your applications through a secure environment.

{% hint style="warning" %}
Never hardcode your API key directly in your application code or commit it to version control.
{% endhint %}

## Step 2: Choose Your Path

Ojin offers two ways to build with real-time AI — start with whichever fits:

### Deploy a Human Agent — no code (fastest)

Deploy an end-to-end conversational AI agent with a visual avatar. Ojin handles the entire pipeline — or bring your own speech-to-speech provider. No pipeline assembly required.

1. [Create & configure your agent](/apps/overview/configure.md) in the dashboard (using your API key from Step 1)
2. [Embed the widget](/apps/overview/widget-integration.md) on your site — one HTML tag, done

### Build with the SDK — your own pipeline

Use Ojin's real-time face models for the visual avatar layer in your own conversational pipeline. You control the full stack — STT, LLM, TTS — and the [Python SDK](/models/build-with-python-sdk.md) or [Pipecat](/models/introduction/integrations.md) turns your TTS audio into a synchronized talking avatar. Pick [`ojin/oris-presence`](/models/oris-presence.md) (flagship) or [`ojin/oris-portrait`](/models/oris-portrait.md) (cost-effective) with its `config_id`.

1. [Build with the Python SDK](/models/build-with-python-sdk.md) — install, authenticate, and stream your first avatar
2. Or drop the avatar into a [Pipecat](/models/introduction/integrations.md) voice agent

## Troubleshooting

Run into a snag? Check the [Troubleshooting guide](/guides/troubleshooting.md) or [reach out to support](/getting-started/support.md).

## Next Steps

### Build with the Python SDK

Install, authenticate, and stream your first avatar

[Open the SDK guide →](/models/build-with-python-sdk.md)

### Human Agent

Learn more about the full agent product

[View Human Agent →](/apps/overview.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.ojin.ai/getting-started/quickstart.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
