Added several things: Parser to import JSON from DiscordChatExporter, ability to train without bot running and more.

This commit is contained in:
pacnpal
2024-12-27 11:17:21 -05:00
parent 44ddad6b58
commit ec0c4e6c84
14 changed files with 4549 additions and 6025 deletions

21
example-training.json Normal file
View File

@@ -0,0 +1,21 @@
[
{
"message": "Hello world!",
"attachments": []
},
{
"message": "This is an example message with an attachment",
"attachments": ["https://example.com/image.jpg"]
},
{
"message": "Another training message",
"attachments": []
},
{
"message": "Messages can have multiple attachments",
"attachments": [
"https://example.com/image1.jpg",
"https://example.com/image2.jpg"
]
}
]