diff --git a/src/ontogpt/cli.py b/src/ontogpt/cli.py index 96f9d1ad0..0fd4655f2 100644 --- a/src/ontogpt/cli.py +++ b/src/ontogpt/cli.py @@ -365,9 +365,11 @@ def parse_tabular_input(inputpath: str, selectcols: List[str]) -> str: max_text_length_option = click.option( "--max-text-length", type=click.INT, - help="Maximum text length in characters for each input chunk. Dependent on context size of model used.", + help="Maximum text length in characters for each input chunk." + " By default, the entire input is passed to the model.", ) + @click.group() @click.option("-v", "--verbose", count=True) @click.option("-q", "--quiet")