Skip to content

Commit 56271bb

Browse files
committed
consistent capitalization
1 parent 0e7def1 commit 56271bb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
102102
### Changed
103103

104104
- flag to use an existing dataset for model creation to allow manual revision
105-
- user input for model creation updated to work with new discord naming system
105+
- user input for model creation updated to work with new Discord naming system
106106
- tweaked readme
107107

108108
## [1.2.2] - 02-22-2023

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 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.
33

44
DiscordAI Modelizer is primarily used as a subcomponent of [DiscordAI](https://github.com/A-Baji/discordAI), but may also be used independently.
55

discordai_modelizer/command_line/subparsers.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def set_bot_key_help_str(is_parent=False):
88

99
def setup_model_list(model_subcommand, is_parent=False):
1010
model_list = model_subcommand.add_parser(
11-
"list", help="List your openAi customized models"
11+
"list", help="List your openAI customized models"
1212
)
1313
model_list_required_named = model_list.add_argument_group(
1414
"required named arguments"
@@ -50,7 +50,7 @@ def setup_model_create(model_subcommand, is_parent=False):
5050
"--discord-token",
5151
type=str,
5252
dest="discord_token",
53-
help=f"The discord token for your bot. Must either be passed in as an argument or set {set_bot_key_help_str(is_parent)}",
53+
help=f"The Discord token for your bot. Must either be passed in as an argument or set {set_bot_key_help_str(is_parent)}",
5454
)
5555
model_create_required_named.add_argument(
5656
"-o",
@@ -65,15 +65,15 @@ def setup_model_create(model_subcommand, is_parent=False):
6565
required=True,
6666
type=str,
6767
dest="channel",
68-
help="The ID of the discord channel you want to use",
68+
help="The ID of the Discord channel you want to use",
6969
)
7070
model_create_required_named.add_argument(
7171
"-u",
7272
"--user",
7373
required=True,
7474
type=str,
7575
dest="user",
76-
help="The unique username of the discord user you want to use",
76+
help="The unique username of the Discord user you want to use",
7777
)
7878

7979
model_create_optional_named.add_argument(
@@ -156,7 +156,7 @@ def setup_model_create(model_subcommand, is_parent=False):
156156
action="store_true",
157157
required=False,
158158
dest="redownload",
159-
help="Redownload the discord chat logs",
159+
help="Redownload the Discord chat logs",
160160
)
161161
model_create_optional_named.add_argument(
162162
"--use_existing",

0 commit comments

Comments
 (0)