New option: --local-ollama
- Uses Ollama format with localhost:11434 API endpoint
- Model: nomic-embed-text-v1.5 (without hf: prefix)
- No API_KEY environment variable required
- Overrides api-format, api-url, and api-model flags
Changes:
1. Add --local-ollama boolean flag to parse_args()
2. Modify check_env() to skip API_KEY check when local-ollama is set
3. Update configure_client() to generate Ollama-specific SQL without 'key' parameter
4. Update main() to display correct configuration based on mode
5. Update documentation with local Ollama usage
Behavior:
- Without --local-ollama: Requires API_KEY, uses remote API with configurable format/url/model
- With --local-ollama: No API_KEY needed, uses fixed local Ollama configuration