
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Chat with your PDF documents easily using local embeddings and powerful LLMs through a unified SDK. Upload any PDF and ask natural language questions about its content — powered by semantic search and AI.
pip install chat-with-pdf
Or using Poetry:
poetry add chat-with-pdf
# Default provider key
export OPENAI_API_KEY="sk-your-openai-key"
# The model for the provider
export OPENAI_MODEL="gpt-4"
# Switch to another provider (e.g., perplexity, openai or deepseek)
export LLM_PROVIDER="perplexity"
from chat_with_pdf import PDFChat
# Local PDF file
chat = PDFChat("path/to/your/document.pdf")
print(chat.ask("Summarize the introduction section."))
# Remote URL
chat = PDFChat("https://example.com/sample.pdf")
print(chat.ask("What is the main point of this document?"))
# PDF in memory
with open("path/to/your/document.pdf", "rb") as f:
data = f.read()
chat = PDFChat(data)
print(chat.ask("Give me a brief overview."))
Configure via environment variables (in order of precedence):
Variable | Purpose | Default |
---|---|---|
LLM_PROVIDER | Provider to use (openai , perplexity , deepseek ) | openai |
OPENAI_API_KEY | Your OpenAI API key | — |
OPENAI_MODEL | GPT model name (used for all providers) | gpt-3.5-turbo |
EMBEDDING_MODEL | Embedding model | all-MiniLM-L6-v2 |
DEFAULT_CHUNK_SIZE | Characters per text chunk | 500 |
TOP_K_RETRIEVAL | Number of chunks to retrieve per query | 5 |
💡 For local development, you can also create a
.env
file with these variables and the SDK will load it automatically.
Override provider/model at runtime:
from chat_with_pdf import PDFChat
# Use GPT-4 on OpenAI
chat = PDFChat("doc.pdf")
print(chat.ask("What are the key findings?", provider="openai", model="gpt-4"))
# Use DeepSeek
print(chat.ask("Summarize", provider="deepseek", model="deepseek-chat"))
# Use Perplexity
print(chat.ask("Summarize", provider="perplexity", model="sonar"))
This project is licensed under the MIT License.
FAQs
Chat with your PDFs using local embedding search and OpenAI.
We found that chat-with-pdf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.