For now, we are using ollama as an external dependency. Ollama already has its own Mac distribution, and we can simply instruct users to install Ollama if they don't already have it.
7 lines
183 B
Rust
7 lines
183 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
glowpath_lib::run()
|
|
}
|