{% extends "base.html" %} {% block title %}Get Started — Ageri{% endblock %} {% block body %}
A

Welcome to Ageri

Your personal AI operating system is running.

{% set steps = ['namespace', 'key', 'password'] %} {% set current_idx = steps.index(step) if step in steps else 0 %}
{% for i in range(steps|length) %} {% if i == current_idx %}
{% elif i < current_idx %}
{% else %}
{% endif %} {% endfor %}
{% if error %}
{{ error }}
{% endif %} {% if step == 'namespace' %}

Claim your namespace

Your Ageri instance will be reachable at you.ageri.ai.

.ageri.ai
{% elif step == 'key' %}

AI model access

How should Ageri access AI models?

{% for p, label in [('anthropic','Anthropic'),('openai','OpenAI'),('google','Google'),('ollama','Ollama'),('custom','Custom')] %} {% endfor %}

Leave blank to use the default local Ollama endpoint.

{% elif step == 'password' %}

Set a password

Protects your Ageri instance. Required for remote access.

{% endif %}
{% endblock %}