Skip to content
Alex Arbuckle edited this page Jan 1, 2025 · 10 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

variable variable purpose


Clone this wiki locally