TokenSmith is a desktop app for students to ask questions on your course documents (PDFs).
It runs locally on your machine, retrieves passages relevant to your question from your documents, and shows the page sources with each answer.
- Install and start Ollama.
- Download the recommended local embedder and chat models.
- Add a folder containing your course PDFs.
- Ask questions in Chat or pick a suggested question.
- Use page source cards to explore where an answer came from within the document and skim through the page.
- Continue with your own questions or suggested follow-up questions to study deeper.
- Indexes PDFs for local search using the embedder model.
- Retrieves relevant passages before answering using a vector index.
- Answers with page source cards for cross-checking with the documents.
- Suggests follow-up questions.
Download the latest app from the GitHub Releases page: https://github.com/georgia-tech-db/TokenSmith/releases
On first launch, TokenSmith will guide you through installing Ollama, downloading models, and adding PDFs.
Install dependencies:
npm installBuild the local Python runtime used by development and packaging:
npm run setup:python-runtimeStart the app locally:
npm run devRun tests:
npm run typecheck
npm testCreate a macOS DMG:
npm run package:macCreate a Windows portable zip:
npm run package:win

