def print_help()

in local_gemma/cli.py [0:0]


def print_help(is_instruction_tuned: bool = True):
    if is_instruction_tuned:
        print("\nYou can now interact with the model through a conversation. A few tips:")
        print("- Initialize the program with '--silent' to hide all non-model messages")
        print("- Input '!exit' to leave the program")
        print("- Input '!new session' to reset the conversation")
        print("- Input '!help' to print this message again")
    else:
        print("\nYou can now pass a prompt to the base model to generate a single response.")
        print("Tip: for multi-turn conversation, use an instruction tuned model, such as `google/gemma-2-9b-it`.")
    print("")