Rebyte-cli is a command line tool for rebyte.ai. It can help you to manage your rebyte project via command line.
- Manage your agent
- Manage your agent extension
- Manage your knowledge base
You may install rebyte cli using the following scripts.
⚠️ Note: We use a short link to download install script. If you encounter error when using short link you can try our full link replace the short linkhttps://shorturl.at/cGH23
tohttps://raw.githubusercontent.com/rebyteai/rebyte-cli/main/install.sh
Using PowerShell:
iwr https://shorturl.at/cGH23 -useb | iex
curl -fsSL https://shorturl.at/cGH23 | sudo sh -
If you don't have curl installed, you would like to use wget:
wget -qO- https://shorturl.at/cGH23 | sudo sh -
⚠️ Note: Scripts will download rebyte binray to/usr/local/bin
directory. Make sure the/usr/local/bin
directory exists and in yourPATH
environment variable
1. generate rebyte api KEY from https://rebyte.ai
rebyte login -k <your rebyte api key>
For cn user, you can use
rebyte login -k <your rebyte api key> -u https://colingo.ai
You need to go to UI to create an extension first.
http://rebyte.ai/p/<Your_Project_Id>/settings/extensions
Using rebyte deploy
to deploy your project. Your project dir must have a
rebyte.json
file
rebyte deploy <your project dir>
rebyte --help