mirror of
https://github.com/dataforcanada/d4c-service-geo-assistant.git
synced 2026-06-13 22:41:01 +02:00
be8affaa6c
* 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>
17 lines
523 B
Bash
17 lines
523 B
Bash
# Ollama Configuration
|
|
OLLAMA_AGENT_MODEL=gpt-oss:20b-cloud
|
|
OLLAMA_IMAGE_MODEL=ministral-3:14b-cloud
|
|
OLLAMA_BASE_URL=http://localhost:11434
|
|
|
|
# Overture Maps Configuration
|
|
# Source: 'local' or 's3'
|
|
OVERTURE_SOURCE=local
|
|
OVERTURE_LOCAL_PATH=data/overture/places/*
|
|
OVERTURE_S3_PATH=s3://overturemaps-us-west-2/release/2025-11-19.0/theme=places/type=place/*
|
|
|
|
# Frontend Configuration
|
|
# API base URL for the frontend to connect to (default: http://localhost:8000)
|
|
API_BASE_URL=http://localhost:8000
|
|
|
|
AWS_REQUEST_PAYER=requester
|