gymScholar · community research ingestion
This is a non-commercial personal project. You parse the paper on your own machine with your own parser key, and submit only the resulting text — no PDF is uploaded and no key ever leaves your computer.
Not sure what to submit? Browse papers that need help →
pip install llama-parse, drop your key and the
PDF path into the snippet, and run it. The output is what goes in the form.
from llama_parse import LlamaParse
parser = LlamaParse(
api_key="YOUR_KEY",
result_type="text",
# EU keys only — delete this line if your key is US-region:
base_url="https://api.cloud.eu.llamaindex.ai",
)
docs = parser.load_data("your_paper.pdf")
text = "\n\n".join(d.text for d in docs)
print(text) # paste this into the form below
Prefer not to run Python? Uploading the PDF in the LlamaParse web UI and copying the parsed text works just as well, as does any parser that returns clean text. Either way the parsing happens on your machine and your account — your key never touches this server, and no PDF is ever uploaded here.