You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# DiscordAI Modelizer
2
-
DiscordAI Modelizer is a python package that can generate custom openai models based on a Discord user's chat history in a Discord channel. It uses [DiscordChatExporter](https://github.com/Tyrrrz/DiscordChatExporter) to download the logs of a channel, processes the logs into a usable dataset, and then uses [openAI's API](https://beta.openai.com/docs/introduction) to create a customized model. It also wraps some of the tools from the openAI API to help with managing customizations.
2
+
DiscordAI Modelizer is a python package that can generate custom openai models based on a Discord user's chat history in a Discord channel. It uses [DiscordChatExporter](https://github.com/Tyrrrz/DiscordChatExporter) to download the logs of a channel, processes the logs into a usable dataset, and then uses [OpenAI's API](https://beta.openai.com/docs/introduction) to create a customized model. It also wraps some of the tools from the OpenAI API to help with managing customizations.
3
3
4
4
DiscordAI Modelizer is primarily used as a subcomponent of [DiscordAI](https://github.com/A-Baji/discordAI), but may also be used independently.
5
5
@@ -12,24 +12,24 @@ DiscordAI Modelizer is primarily used as a subcomponent of [DiscordAI](https://g
12
12
13
13
## Commands
14
14
### Model
15
-
Commands related to your openAI models
15
+
Commands related to your OpenAI models
16
16
#### `discordai_modelizer model list`
17
-
* List your openAI models
17
+
* List your OpenAI models
18
18
#### `discordai_modelizer model create`
19
-
* Create a new openAI customized model by downloading the specified chat logs, parsing them into a usable dataset, and then training a customized model using openai
19
+
* Create a new OpenAI customized model by downloading the specified chat logs, parsing them into a usable dataset, and then training a customized model using openai
20
20
* For proper usage, see the [DiscordAI guide](https://github.com/A-Baji/discordAI#create-a-new-customized-openai-model)
21
21
#### `discordai_modelizer model delete`
22
-
* Delete an openAI model
22
+
* Delete an OpenAI model
23
23
### Job
24
-
Commands related to your openAI jobs
24
+
Commands related to your OpenAI jobs
25
25
#### `discordai_modelizer job list`
26
-
* List your openAI customization jobs
26
+
* List your OpenAI customization jobs
27
27
#### `discordai_modelizer job info`
28
-
* Get an openAI customization job's info
28
+
* Get an OpenAI customization job's info
29
29
#### `discordai_modelizer job event`
30
-
* Get an openAI customization job's events
30
+
* Get an OpenAI customization job's events
31
31
#### `discordai_modelizer job cancel`
32
-
* Cancel an openAI customization job
32
+
* Cancel an OpenAI customization job
33
33
34
34
## Disclaimer
35
35
This application allows users to download the chat history of any channel for which they have permission to invite a bot, and then use those logs to create an openai model based on a user's chat messages. It is important to note that this application should only be used with the consent of all members of the channel. Using this application for malicious purposes, such as impersonation, or without the consent of all members is strictly prohibited.
help="Create a new openAI customized model by downloading the specified chat logs, parsing them into a usable dataset, and then training a customized model using openai",
39
+
help="Create a new OpenAI customized model by downloading the specified chat logs, parsing them into a usable dataset, and then training a customized model using openai",
help=f"The openAI API key associated with the job to see the info for. Must either be passed in as an argument or set {set_openai_help_str(is_parent)}",
241
+
help=f"The OpenAI API key associated with the job to see the info for. Must either be passed in as an argument or set {set_openai_help_str(is_parent)}",
help=f"The openAI API key associated with the job to see the events for. Must either be passed in as an argument or set {set_openai_help_str(is_parent)}",
266
+
help=f"The OpenAI API key associated with the job to see the events for. Must either be passed in as an argument or set {set_openai_help_str(is_parent)}",
0 commit comments