{% extends 'base.html' %} {% load static %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% block title %} {% trans 'AI-Powered arXiv Paper Summarization - Ask questions about a Paper' %} {% endblock %} {% block extra_head_tags %} {% endblock %} {% block header_class %}{% endblock %} {% block content %} {% if activated %}

{% trans 'Your account is now activated and you are logged in.' %}

{% endif %}

{% trans "Discover Key Insights from arXiv's Latest Articles" %}

{% csrf_token %}
{% trans 'Enter keywords, article titles, arXiv IDs (e.g., 2211.04191), or authors to search (use the language of papers you are interested in)' %}
{% if error %}
{{ error }}
{% endif %}

{% blocktrans %}Welcome to our open-source AI tool, where you can stay up-to-date with the latest research on arXiv. Our goal is to provide you with concise, understandable, and insightful summaries (key-points, layman's summary, ...) for all arXiv research articles using AI, so you can quickly get a grasp of the latest developments in your field. In addition to our summary service, we offer an AI assistant to answer your questions about arXiv papers. Whether you're a researcher, a student, a journalist, or simply someone who wants to stay informed, SummarizePaper.com is here to make your life easier.{% endblocktrans %}

{% trans 'Chat with arXiv Papers' %}

{% trans 'Did you know you can chat directly with one or several arXiv papers? Our chatbot allows you to have a conversation with any paper on arXiv, enabling you to get more insights and ask questions in a natural language way.' %}

{% trans 'Start Chatting' %}

{% trans 'Latest Papers summarized with our AI tools' %}

{% for paper in latestpapers %}
{{ paper.paper.title|truncatechars:80 }}
{{ paper.paper.category }}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}