This is SciPop, the friendly AI that analyses and synthesizes scientific articles for the general public.
flowchart LR
Papers@{ shape: docs, label: "DIPT\npublications"}
DiVA@{ shape: database, label: "DiVA: Titles,\nabstracts and meta-data"}
RAC@{ shape: rect, label: "Research abstract\nclusterer (BERTopic)"}
RT@{ shape: docs, label: "Research\nthemes"}
RTP@{ shape: rect, label: "Research-to-practice\nsynthesizer (GPT)" }
RTS@{ shape: docs, label: "Research themes\nsyntheses" }
Papers --> DiVA --> RAC --> RT --> RTP --> RTS
RTS --Research theme
editor review--> RTS
-
Install uv
Follow the installation instructions at https://docs.astral.sh/uv/getting-started/installation/
-
Create a virtual environment
uv venv --python 3.12 -
Activate the virtual environment
Linux/Mac:
source .venv/bin/activateWindows:
.venv\Scripts\activate -
Install required packages
uv pip install -r requirements.txt
Note: The original conda-based setup is preserved in the git history if needed.