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
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -180,12 +180,12 @@ else
180
180
fi
181
181
182
182
# Offer shell integration
183
-
info "Would you like to install shell integration? This allows you to use Open Interpreter directly from your shell - if you type an unrecognized command, it will be passed to Open Interpreter with context about your recent shell history. [y/N] "
183
+
info "Would you like to install our experimental shell integration? This allows you to use your shell as a chatbox, with your shell history as context. [y/N] "
184
184
read -r install_shell_integration
185
185
if [[ "$install_shell_integration"=~ ^[Yy]$ ]];then
186
186
if command_exists interpreter-shell;then
187
187
interpreter-shell
188
-
info "Shell integration installed successfully! Restart your shell to activate it."
188
+
info "Shell integration installed successfully! Restart your shell to activate it. Run interpreter-uninstall-shell to remove it."
189
189
else
190
190
error "Could not find interpreter-shell command. Please ensure Open Interpreter was installed correctly."
0 commit comments