Sweep CLI Installation

April 21, 2024 ยท View on GitHub

import { Callout, Tabs, Steps } from 'nextra/components' import { FaInfoCircle, FaExclamationCircle } from 'react-icons/fa'

Sweep CLI Installation

Prerequisites: python 3.10 and pip. We also recommend uv for a ~1s install.

Sweep CLI is a locally running version of Sweep (no data will enter our servers).

To use our hosted version of Sweep, install it here (2 min). To self-host your own deployment of Sweep, visit deployment (15 min).

Install the Sweep CLI

pip install sweepai

Initialize the Sweep CLI

Initialize the CLI with your OpenAI, Anthropic and GitHub API keys:

sweep init

and follow the prompts to enter your API keys.

Run the Sweep CLI

Create a GitHub Issue like the examples in our guide in your repo, and run the following command:

sweep run https://github.com/YOUR-USERNAME/YOUR-REPO/issues/1

To have Sweep automatically fix newly created issues, you can also run the following command:

sweep watch YOUR-USERNAME/YOUR-REPO

๐ŸŽ‰ Congratulations!

You have successfully set up the Sweep CLI. You can now use Sweep to help handle GitHub issues and pull requests.
To set up Sweep for your organization, see self-hosting Sweep's GitHub App and book a call with us for a commercial license.


Bonus (optional)

Ripgrep

Our search pipeline involves agentic search which sometimes uses Ripgrep, which you can install by running:

<Tabs items={['MacOS', 'Debian (or Ubuntu)', 'Windows', 'Cargo']}> <Tabs.Tab>

brew install ripgrep

</Tabs.Tab> <Tabs.Tab> With apt-get:

sudo apt-get install ripgrep

With curl:

curl -LO https://github.com/BurntSushi/ripgrep/releases/download/13.0.0/ripgrep_13.0.0_amd64.deb
sudo dpkg -i ripgrep_13.0.0_amd64.deb

</Tabs.Tab> <Tabs.Tab> With Windows Chocolatey:

choco install ripgrep

With Windows Scoop:

scoop install ripgrep

With Winget:

winget install BurntSushi.ripgrep.MSVC

</Tabs.Tab> <Tabs.Tab>

cargo install ripgrep

</Tabs.Tab>

For other methods of installation, you can visit here

Eslint

If you're editing Javascript / Typescript code, our code editing agent will use your global copy of eslint. You need npm and npx installed, and you can install all the required packages with

npm i -g typescript eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-plugin-import

You can double check it's working with:

npx eslint --version

Search Improvements using Other Search Providers

Cohere Rerank v3

Cohere's Rerank v3 endpoint can improve search's recall by > 5%. You can get an API key from https://dashboard.cohere.com/api-keys and run:

export COHERE_API_KEY=abcdefg

Then Sweep will use Cohere to rerank the top 100 snippets after the initial retrieval.

Voyage AI

Voyage AI's voyage-code-2 embedding model achieves a 3% higher search recall compared to OpenAI's Ada v3. You can get an API key from https://dash.voyageai.com/api-keys and run:

export VOYAGE_API_KEY=pa-abcdefg

Then Sweep will use Voyage AI for retrieval instead of OpenAI.

Self-hosted Search Providers

For connecting with self-hosted Cohere's or Voyage AI's model(s) on AWS SageMaker, contact us at team@sweep.dev.