Skip to content

Commit de52e1f

Browse files
authored
Merge pull request #28 from A-Baji/dev
some log tweaks
2 parents 6a9dc40 + c561306 commit de52e1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

discordai_modelizer/customize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def create_model(bot_token: str, openai_key: str, channel_id: str, user_id: str,
5353
print(f"INFO: Fine tune job id: {fine_tune.id}")
5454
print("INFO: This may take a few minutes to hours depending on the size of the dataset and the selected base model")
5555
print("INFO: Use the `job status` command to check on the status of job process")
56-
print("INFO: If you have the `openai` python package installed, you can instead use the `job follow` command to follow the event stream of the job.")
56+
print("INFO: If you are using the python package, or have the `openai` python package installed, you can instead use the `job follow` command to follow the event stream of the job.")
5757
elif base_model == "none":
5858
print("INFO: No base model selected... Skipping training.")
5959

discordai_modelizer/openai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def follow_job(openai_key: str, job_id: str):
4040
"-i", job_id
4141
])
4242
except FileNotFoundError:
43-
print("You must have the `openai` python package installed to use this command.")
43+
print("ERROR: You must have the `openai` python package installed to use this command.")
4444

4545

4646
def get_status(openai_key: str, job_id: str):

0 commit comments

Comments
 (0)