From afb81d9b72fcf52aa52b0ab2db3960aaa34c3b2f Mon Sep 17 00:00:00 2001 From: Max Ryabinin Date: Tue, 24 Sep 2024 13:02:55 +0100 Subject: [PATCH] Clarify wording in the message --- src/together/cli/api/finetune.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/together/cli/api/finetune.py b/src/together/cli/api/finetune.py index 05bf032..5530ab7 100644 --- a/src/together/cli/api/finetune.py +++ b/src/together/cli/api/finetune.py @@ -13,11 +13,11 @@ _CONFIRMATION_MESSAGE = ( - "You are about to launch a fine-tuning job. " + "You are about to create a fine-tuning job. " "The cost of your job will be determined by the model size, the number of tokens " "in the training file, the number of tokens in the validation file, the number of epochs, and " "the number of evaluations. Visit https://www.together.ai/pricing to get a price estimate.\n" - "You can add `-y` or `--confirm` to skip this message.\n\n" + "You can pass `-y` or `--confirm` to your command to skip this message.\n\n" "Do you want to proceed?" )