Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,19 @@ Follow these steps to run the barebones Chainlit application.
```bash
poetry install
```
4. Verify your `PYTHONPATH` environment variable includes `./src`:
4. Verify your `PYTHONPATH` environment variable includes `./src`.

Linux / macOS:
```bash
echo $PYTHONPATH
# ./src
```

Windows (PowerShell):
```powershell
echo $env:PYTHONPATH
# ./src
```
5. List embeddings available for download:
```bash
./bin/embeddings_manager ls-remote
Expand Down Expand Up @@ -82,7 +90,7 @@ Follow these steps to run the complete application in Docker.
```bash
docker build -t reactome-chatbot .
```
6. Start the Chainlit application and PostgrSQL database in Docker containers:
6. Start the Chainlit application and PostgreSQL database in Docker containers:
```bash
docker-compose up

Expand Down