accelerating self-learning | website
(RO) InfoEducatie:
Documentatia pentru concurs este disponibila aici. Pentru rulat local sunt instructiuni folosind Docker sau fara, website-ul este de asemenea deployed pe https://orion.asandei.com. Restul readme-ului prezinta si structura proiectului in mare.
Orion is a mix of multiple apps, such as Notion, ChatGPT and any todo app. It's a hub for learning where you can organize your content and query it using AI agents, meaning you can use natural language to quickly find anything. You can quickly save any thought (text, image, pdf documents or links) to your library and they will be available in your knowledge base.
Please click on any image to open it in a new tab!
Orion is organized in workspaces, which hold multiple projects. You can organize documents in projects using directories or tags. A user has a knowledge base - which contains "quick thoughts" (texts, images, code snippets, PDFs) or documents. You can query the knowledge base using the dashboard, or from any page using the universal search (Search in the sidebar or CTRL + K).
To get started, create a workspace during the onboarding. Create a project from the sidebar, you can write the documents using the rich text editor. Add short notes from the dashboard, and you can also use the chat interface from the dashboard.
To chat with a PDF, choose it from your library or from a project and click the chat. Choose suggested questions or write your own.
Before any of the steps, make sure you have filled in ./apps/web/.env with the API keys. The IS_PRODUCTION variable determines if the app should use Ollama for LLMs (won't work in docker, only for local dev) or OpenRouter.
Also make sure you have changed the packages/api/src/enabled-ai.ts file to your user id (you can find it in the db studio, after the sign up). Otherwise the AI features will be down - the rest of the app does work without AI (to reduce costs, while billing is a work in progress).
For the database, it's easiest to just use Neon, with the pgvector extension enabled. Because they have a special driver with websockets, it's harder to also make everything work with a normal postgresql local db. You have to add the database connection URL to ./apps/web/.env and ./packages/db/.env.
- Enable the pgvector extension in Neon (run
CREATE EXTENSION IF NOT EXISTS vector;in console) - Run
db:pushto setup the schema - Run
db:seedto add some initial data (default user account: email & password areasandei.stefanel@gmail.com)
- Build the image
docker build -t orion .
- Run a container
docker run -p 4173:4173 orion
The app should be running on http://localhost:4173
-
Fill in
./apps/web/.env, following./apps/web/.env.example. -
Install dependencies for the monorepo (can use
npminstead, butpnpmshould save save):
pnpm install
- Run the development server
pnpm dev
Other useful commands are test:unit (run unit tests), db:studio (start drizzle studio, view database state), db:push (apply database migrations to the remote db).
Directory structure:
.
├── apps
│ └── web
# SvelteKit app: frontend & backend
├── LICENSE
├── node_modules
├── package.json
├── packages
│ ├── agent
# Utility functions for LLM agents
│ ├── api
# tRPC procedures for the backend
│ ├── auth
# Utility functions for core auth
│ ├── config
│ ├── core
│ └── db
# Database schema declaration
├── pnpm-lock.yaml
├── pnpm-workspace.yaml
├── README.md
├── tests
│ ├── e2e
│ └── unit
# Unit tests
└── turbo.json
Third party services used:
- Neon: hosted postgresql database
- GitHub: oauth
- Upstash: hosted redis database
- Google Recaptcha
- Resend: hosted email server
- Uploadthing: hosted (free) storage service
- Cohere: good embeddings model (used for vector search)
- OpenRouter: API for LLMs
- Exa: web search API
Tech stack: Turborepo, SvelteKit, tRPC, Drizzle, PostgreSQL, Redis, Tailwind.
The project can be used locally completly for free. All 3rd party services have good free tiers, and for the LLMs you can use Ollama or free models from OpenRouter (given they support tool calls and they're not down).
Orion is open source and available under the GPL v3 license.
Copyright 2025 Asandei Stefan-Alexandru & Ciobanu Andrei-Mihai. All rights reserved.