File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed
Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,16 @@ curl -fsSL https://raw.githubusercontent.com/abhishekbhardwaj/aish-cli/main/scri
1212
1313This installs AISH to ` ~/.local/bin/aish ` (following XDG Base Directory specification).
1414
15+ ** After installation, configure your AI provider:**
16+ ``` bash
17+ aish configure # Set up your AI provider and API key first
18+ ```
19+
1520### Install Specific Version
1621
1722``` bash
1823VERSION=v1.2.3 curl -fsSL https://raw.githubusercontent.com/abhishekbhardwaj/aish-cli/main/scripts/install.sh | bash
24+ # Then configure: aish configure
1925```
2026
2127### Manual Installation
@@ -24,6 +30,7 @@ VERSION=v1.2.3 curl -fsSL https://raw.githubusercontent.com/abhishekbhardwaj/ais
24302 . Extract the archive: ` tar -xzf aish-*.tar.gz ` (or unzip for Windows)
25313 . Make executable: ` chmod +x aish `
26324 . Move to PATH: ` mv aish ~/.local/bin/ ` (or ` /usr/local/bin/ ` with sudo)
33+ 5 . ** Configure your AI provider:** ` aish configure `
2734
2835### Build from Source
2936
@@ -32,6 +39,7 @@ git clone https://github.com/abhishekbhardwaj/aish-cli.git
3239cd aish
3340bun install
3441bun run build
42+ # Configure after building: ./aish configure
3543```
3644
3745## π Commands Reference
Original file line number Diff line number Diff line change @@ -190,9 +190,12 @@ echo
190190print_message info " π ${ORANGE} aish ${GREEN} v${specific_version} installed successfully!"
191191print_message info " π Installed to: ${YELLOW} $INSTALL_DIR /aish"
192192echo
193- print_message info " π Try it out:"
194- print_message info " ${YELLOW} aish ask \" What's the weather like?\" "
195- print_message info " ${YELLOW} aish configure"
193+ print_message info " π Get started:"
194+ print_message info " ${YELLOW} aish configure ${GREEN} # Configure AI provider first"
195+ echo
196+ print_message info " π‘ Then try these commands:"
197+ print_message info " ${YELLOW} aish c \" show me disk usage\" "
198+ print_message info " ${YELLOW} aish ask \" What's the capital of France?\" "
196199echo
197200print_message info " π To uninstall:"
198201print_message info " ${YELLOW} rm -f $INSTALL_DIR /aish"
You canβt perform that action at this time.
0 commit comments