diff --git a/pyproject.toml b/pyproject.toml index 3911eb9..53d2739 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "together" -version = "1.3.6" +version = "1.3.7" authors = [ "Together AI " ] diff --git a/src/together/utils/files.py b/src/together/utils/files.py index 1b620ac..6c5892f 100644 --- a/src/together/utils/files.py +++ b/src/together/utils/files.py @@ -150,7 +150,7 @@ def _check_jsonl(file: Path) -> Dict[str, Any]: not in JSONL_REQUIRED_COLUMNS_MAP[possible_format] ): raise InvalidFileFormatError( - message=f"Found extra column {column} in the line {idx + 1}.", + message=f'Found extra column "{column}" in the line {idx + 1}.', line_number=idx + 1, error_source="format", )