Skip to content
Alex edited this page Sep 13, 2025 · 11 revisions

Return Calls on Discord. Reconnect to dropped Discord calls on Retina displays. V2. Fall 2023.


Background

The following notebook provides key information about the project, including its purpose, structure, guidelines, and algorithms, helping those who want to learn more by addressing these topics.

Google Drive


Installation

boot.sh

#!/bin/bash


# variables <
tokenOpenai=""
tokenDiscord=""

role="call"
skipQuery=false
muteAfterCall=true
contact="jordyn.png"
guildId="974210528958369863"
query="give me an inspiring quote to start my day"

# >


git clone https://github.com/lxRbckl/Project-RCoD.git
cd Project-RCoD

poetry=$(which poetry)
poetry install
poetry run python3 main.py \
  "$role" \
  "$query" \
  "$contact" \
  "$guildId" \
  "$skipQuery" \
  "$tokenOpenai" \
  "$tokenDiscord" \
  "$muteAfterCall" \

cd ..
rm -rf Project-RCoD

sudo bash RCoD.sh


Clone this wiki locally