Fix: Working on the generate reply for discord.

Feat: Added a launch.json to allow quicker launches of the bot
docs: phoebe_model.pt will change every time we train.
This commit is contained in:
Dan
2024-05-15 22:36:38 -04:00
parent 75f1116b3b
commit fb8db8a870
3 changed files with 80 additions and 33 deletions

15
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Phoebe",
"type": "debugpy",
"request": "launch",
"program": "E:\\Development\\AI Development\\Phoebe\\phoebe\\discord_bot.py",
"console": "integratedTerminal"
}
]
}