### Start Ollama Service Source: https://github.com/gramps-project/gramps-web-api/blob/master/CONTRIBUTING.md Starts the Ollama service within the devcontainer using Docker Compose. This is an optional step for testing remote embeddings. ```bash docker compose -f .devcontainer/docker-compose.yml --profile ollama up -d ollama ``` -------------------------------- ### Pull Embedding Model Source: https://github.com/gramps-project/gramps-web-api/blob/master/CONTRIBUTING.md Pulls the 'nomic-embed-text' model for the Ollama service. This command is used after starting the Ollama service. ```bash docker compose -f .devcontainer/docker-compose.yml exec ollama ollama pull nomic-embed-text ```