package cmd import ( "context" "errors" "os" "os/exec" "regexp" "github.com/ollama/ollama/api" ) func startApp(ctx context.Context, client *api.Client) error { exe, err := os.Executable() if err != nil { return err } link, err := os.Readlink(exe) if err != nil { return err } r := regexp.MustCompile(`^.*/Ollama\s?\d*.app`) m := r.FindStringSubmatch(link) if len(m) != 1 { return errors.New("could not find ollama app") } if err := exec.Command("/usr/bin/open", "-j", "-a", m[0], "--args", "--fast-startup").Run(); err != nil { return err } return waitForServer(ctx, client) }