Skip to content

mszostok/fuse-releases

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Fuse

The ultimate AI assistant for Platform Engineers, crafted by the Botkube Team.

Using fuse in CLI

Usage

After downloading the CLI, you can start experimenting right away!

Chat mode

To start a session in chat mode, simply run:

fuse

Inline prompting

Tip

When using inline mode, enclose your prompt in single quotation marks (') to prevent your shell from interpreting it.

Fuse CLI also supports inline mode, allowing you to execute prompts directly. Run:

fuse 'list files in the current directory and provide me better organization structure'

💡 Looking for inspiration?

If you are curious what Fuse can do for you, simply run fuse scenarios in your terminal!

scenarios.gif

Installation

macOS & Linux

Fuse is available via Homebrew and as a downloadable binary from the releases page.

Homebrew

Install Upgrade
brew install kubeshop/fuse-releases/fuse brew upgrade kubeshop/fuse-releases/fuse
Using curl on Linux

Download the Fuse CLI binary and move it to a directory in your $PATH:

curl -Lo fuse https://github.com/kubeshop/fuse-releases/releases/latest/download/fuse-linux-amd64
chmod +x fuse && mv fuse /usr/local/bin/fuse

[!NOTE] You may need to use sudo to run the mv command as it moves the binary file to the /usr/local/bin/ directory.

Windows

Use curl to download the Fuse CLI binary:

curl -Lo fuse https://github.com/kubeshop/fuse-releases/releases/latest/download/fuse-windows-amd64.exe

Move the binary to a directory in your %PATH%.

Other Platforms

Download the Fuse CLI binary and move it to a directory in your $PATH/%PATH%:

export OS=<your-os> # allowed values: darwin, linux, windows
export ARCH=<your-arch> # allowed values: amd64, arm64, armv7
export SUFFIX="" # set to ".exe" if OS is 'windows'
curl -Lo fuse https://github.com/kubeshop/fuse-releases/releases/latest/download/fuse-${OS}-${ARCH}${SUFFIX}
chmod +x fuse && mv fuse /usr/local/bin/fuse

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published