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:
Soumya Ranjan Mohanty
2025-12-04 22:11:10 +05:30
committed by GitHub
parent 16f39f908f
commit be8affaa6c
10 changed files with 1848 additions and 1777 deletions
+20
View File
@@ -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