{% extends "base.html" %} {# Override blocks from the theme here. https://squidfunk.github.io/mkdocs-material/customization/?h=block#overriding-blocks #} {% set markdown_url = page.canonical_url ~ "index.md" %} {% block extrahead %} {% endblock %} {% block content %} {% if page and page.url and page.url.startswith('agents/') %}

Private Beta

While anyone can start building and testing agents, publishing the to the agent store is only available to a limited set of developers at this time.
The following documentation provides an early preview of the SDK, and the specifics are subject to change.

{% endif %} {% if page and page.canonical_url %} {% set prompt = "Can you please read [this page](" ~ markdown_url ~ ") and prepare to answer questions about it?" %} {% include ".icons/anthropic/claude.svg" %} {% include ".icons/openai/chatgpt.svg" %} {% include ".icons/simple/markdown.svg" %} {% endif %} {{ super() }} {% endblock %}