transform arXiv papers into a single latex prompt for LLMs
Project description
A command-line tool to transform arXiv papers into a single LaTeX source that can be used as a prompt for asking LLMs questions about the paper. It downloads the source files, automatically finds the main tex file containing \documentclass, and flattens multiple files into a single coherent source by resolving \input and \include commands. The tool also provides options to remove LaTeX comments and appendix sections from the output (which can be useful to shorten the prompt).
Installation
pip install arxiv-to-prompt
Usage
# Display LaTeX source
arxiv-to-prompt 2303.08774
# Display LaTeX source without comments
arxiv-to-prompt 2303.08774 --no-comments
# Display LaTeX source without appendix sections
arxiv-to-prompt 2303.08774 --no-appendix
# Combine options (no comments and no appendix)
arxiv-to-prompt 2303.08774 --no-comments --no-appendix
# Copy to clipboard
arxiv-to-prompt 2303.08774 --copy # or -c
You can use either the arXiv ID (e.g., 2303.08774) or the full URL (e.g., https://arxiv.org/abs/2303.08774). It will automatically download the most recent version of the paper, so you don't need to specify the version. Downloaded papers are cached locally, so subsequent runs for the same paper will use the cached version without re-downloading.
Advanced Options
# Force re-download even if the paper is already cached
arxiv-to-prompt 2303.08774 --force-download
# Process a local folder containing TeX files (instead of downloading from arXiv)
arxiv-to-prompt --local-folder /path/to/tex/files
# Cache locking is on by default (120s timeout); increase/decrease it if needed
arxiv-to-prompt 2303.08774 --lock-timeout 300
# List all sections (with subsections indented)
arxiv-to-prompt 2307.09288 --list-sections
# Introduction
# Pretraining
# Pretraining Data
# Training Details
# Training Hardware \& Carbon Footprint
# ...
# Extract specific sections
arxiv-to-prompt 2307.09288 --section "Introduction" --section "Pretraining"
# Ambiguous names show a helpful error
arxiv-to-prompt 2307.09288 --section "Human Evaluation"
# Warning: 'Human Evaluation' is ambiguous. Found at:
# - Fine-tuning > RLHF Results > Human Evaluation
# - Appendix > Additional Details for Fine-tuning > Human Evaluation
# Use path notation to disambiguate.
# Use path notation when the same name appears multiple times
arxiv-to-prompt 2307.09288 --section "Fine-tuning > RLHF Results > Human Evaluation"
# Combine with the `llm` library from https://github.com/simonw/llm to chat about the paper
arxiv-to-prompt 1706.03762 | llm -s "explain this paper"
Python API
You can also use arxiv-to-prompt in your Python code:
from arxiv_to_prompt import process_latex_source
# Get LaTeX source with comments
latex_source = process_latex_source("2303.08774")
# Get LaTeX source without comments
latex_source = process_latex_source("2303.08774", keep_comments=False)
# Get LaTeX source without appendix sections
latex_source = process_latex_source("2303.08774", remove_appendix_section=True)
# Combine options (no comments and no appendix)
latex_source = process_latex_source("2303.08774", keep_comments=False, remove_appendix_section=True)
# Force re-download even if the paper is already cached
latex_source = process_latex_source("2303.08774", use_cache=False)
# Process LaTeX sources from a local folder (instead of downloading from arXiv)
latex_source = process_latex_source(local_folder="/path/to/tex/files")
Projects Using arxiv-to-prompt
Here are some projects and use cases that leverage arxiv-to-prompt:
- arxiv-latex-mcp: MCP server that fetch and process arXiv LaTeX sources for precise interpretation of mathematical expressions in papers.
- arxiv-tex-ui: chat with an LLM about an arxiv paper by using the latex source.
- paper2slides: transform an arXiv paper into slides.
- ArXivToPrompt: iOS app that allows users to easily extract LaTeX source from arXiv papers on their iPhone and copy it to the clipboard for use with LLM apps.
If you're using arxiv-to-prompt in your project, please submit a pull request to add it to this list!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arxiv_to_prompt-0.9.0.tar.gz.
File metadata
- Download URL: arxiv_to_prompt-0.9.0.tar.gz
- Upload date:
- Size: 20.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5810c7c2e335a3bfba7ae2487875a4cd64ed34dc4bf942b88a0a4a74695409e
|
|
| MD5 |
c2a807c4eb903f8c5a934515f0d0e592
|
|
| BLAKE2b-256 |
f696bc85a84cba6090edafb6e56e025085e275001fb6936da66651696826c65f
|
File details
Details for the file arxiv_to_prompt-0.9.0-py3-none-any.whl.
File metadata
- Download URL: arxiv_to_prompt-0.9.0-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42b14f64027903c7ee8c544e4e952ff74cf9143541c598b9a9b1e919b9e2121c
|
|
| MD5 |
1659605a417f92aef1b0fb09b5cf511e
|
|
| BLAKE2b-256 |
ea7055efd80bb4e63cdf72956a9981920b0f39fea6ac67a5ad8859e30ca1bb61
|