mirror of
https://github.com/dataforcanada/d4c-service-geo-assistant.git
synced 2026-06-14 23:11:01 +02:00
Add docs to download overture places data & ollama model (#13)
* Add docs to download overture places data & ollama model * Hit local overture parquet files * Add osx gitignore * Add .env.example * Make overture data source selectable using .env * Add pytest marker to set right ENV vars during CI --------- Co-authored-by: Daniel Wiesmann <yellowcap@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
16f39f908f
commit
be8affaa6c
@@ -18,6 +18,26 @@ Edit `.env` to set your configuration:
|
||||
|
||||
The application will automatically load these variables from the `.env` file.
|
||||
|
||||
## Ollama Setup
|
||||
|
||||
Install [Ollama](https://ollama.ai/) and download the required models:
|
||||
|
||||
```bash
|
||||
ollama pull ministral-3:14b-cloud
|
||||
ollama pull gpt-oss:20b-cloud
|
||||
```
|
||||
|
||||
These models are used for agent and satellite image analysis.
|
||||
|
||||
## Data Setup
|
||||
|
||||
Download Overture Maps place data locally:
|
||||
|
||||
```bash
|
||||
mkdir -p data/overture/places
|
||||
aws s3 sync s3://overturemaps-us-west-2/release/2025-11-19.0/theme=places/type=place/ data/overture/places/
|
||||
```
|
||||
|
||||
## Development Setup
|
||||
|
||||
### Pre-commit Hooks
|
||||
|
||||
Reference in New Issue
Block a user