Skip to content

Getting started

Install

pip install django-agentweb

Configure

INSTALLED_APPS = [
    # ...
    "django.contrib.sites",
    "agentweb",
]

AGENTWEB = {
    "LLMS": {"ENABLED": True},
    "JSONLD": {"ENABLED": True},
    "DISCOVERY": {"ENABLED": True},
}
# urls.py
from django.urls import include, path

urlpatterns = [
    path("", include("agentweb.urls")),
]

Only enabled domains register URLs or expose data.