Skip to content

Instantly share code, notes, and snippets.

View bryanmorganoverbey's full-sized avatar
🎯
Focusing

Bryan Morgan Overbey bryanmorganoverbey

🎯
Focusing
View GitHub Profile
# 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
@lemajes
lemajes / ngrok-installer.sh
Last active December 1, 2023 20:56
[Ngrok Installer] Script to install ngrok #linux #script #installer #ngrok
#!/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"