{% extends "base.html" %} {% block title %}Search - Context7 Docs{% endblock %} {% block content %}

Search Documentation

{% if error %}

Error loading results: {{ error }}

{% elif query and not results %}

No results found.

{% elif results %}
{{ results|length }} results found
{% for result in results %}

{{ result.title or result.path or result.library_id or 'Document result' }}

{{ (result.content or '')[:500] }}{% if (result.content or '')|length > 500 %}...{% endif %}

Library: {{ result.library_id or 'unknown' }} {% if result.score is defined %} | Score: {{ '%.3f'|format(result.score) }}{% endif %}

{% if result.library_id %} View library documents {% endif %}
{% endfor %}
{% endif %} {% endblock %}