This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # need to have conda installed | |
| # these are instructions for macOS | |
| git clone https://github.com/OpenBMB/ChatDev.git | |
| conda create -n ChatDev_conda_env python=3.9 -y | |
| conda activate ChatDev_conda_env | |
| cd ChatDev | |
| pip3 install -r requirements.txt | |
| set OPENAI_API_KEY=your_key | |
| python run.py --task "[description_of_your_idea]" --name "[project_name]" | |
| python3 online_log/app.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| apt-get install unzip -y | |
| wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip | |
| unzip ngrok-stable-linux-amd64.zip | |
| mkdir /opt/ngrok | |
| mv ngrok /opt/ngrok/ngrok | |
| echo -e "You should now login on https://dashboard.ngrok.com/user/signup" | |
| echo -e "Once done, you should copy the command inside the" | |
| echo -e "Connect your account frame" | |
| echo -e "It look like this" |