{% extends "base.html" %} {% block title %}SearchGPT{% endblock %} {% block content %}
{% include 'alert_box.html' %}
{% include 'prompt_examples.html' %}

{% include 'request_id_status_html.html' %}
Note:
- Calls took about 15 seconds to fully complete normally.
(~5 sec for Bing Search, ~10 sec for OpenAI)
- Sometimes the API is not stable. If it exceeded 30 seconds, please try again.
- Current source filtering: first 20 lines for each websites, then get the best results and trimmed to 1500 tokens
- Non-English language is experimental. It will somehow work.
{% if request.args.get('is_use_source', 'true') != 'False' %} {% else %} {% endif %}

{% include 'search_result_step.html' %}
{% include 'search_result.html' %}

{% include 'explain_result.html' %}

{% endblock %}