You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/install.sh
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Options:
36
36
--prerelease Clone the latest prerelease tag for fresh one-line installs.
37
37
--dev Clone the repository default branch for fresh one-line installs.
38
38
--mode local|internal|demo Deployment profile. If omitted, prompts interactively.
39
-
--llm-provider NAME openai-compatible, anthropic, google, or ollama.
39
+
--llm-provider NAME openai-compatible, anthropic, google, ollama, or no-llm.
40
40
--no-start Write configuration but do not start the Apptainer stack.
41
41
--no-prereqs Do not install missing prerequisites such as uv, Node.js, Lima, or Apptainer.
42
42
--desktop Prepare the local Electron desktop launcher.
@@ -604,7 +604,7 @@ prompt_desktop_shortcut() {
604
604
echo"Skipping Desktop shortcut prompt under WSL."
605
605
return
606
606
fi
607
-
if confirm "Create a Desktop shortcut icon? Pros: one-click launch from the Desktop, uses the NeuroCade icon, and starts the local backend automatically. Cons: adds an icon/link to your Desktop folder and depends on the Electron launcher files staying in this install location.""y";then
607
+
if confirm "Create a Desktop shortcut icon?""y";then
608
608
create_desktop_shortcut "$root"
609
609
fi
610
610
}
@@ -787,7 +787,8 @@ main() {
787
787
"openai-compatible|Custom OpenAI-compatible API base URL." \
788
788
"anthropic|Anthropic Claude API." \
789
789
"google|Google Gemini API." \
790
-
"ollama|Local Ollama server."
790
+
"ollama|Local Ollama server." \
791
+
"no-llm|Skip LLM setup; assistant features will be disabled."
0 commit comments