Skip to main content

FileWriteToolkit

A toolkit for creating, writing, and modifying text in files. This class provides cross-platform (macOS, Linux, Windows) support for writing to various file formats (Markdown, DOCX, PDF, and plaintext), replacing text in existing files, automatic filename uniquification to prevent overwrites, custom encoding and enhanced formatting options for specialized formats.

init

Initialize the FileWriteToolkit. Parameters:
  • working_directory (str, optional): The default directory for output files. If not provided, it will be determined by the CAMEL_WORKDIR environment variable (if set). If the environment variable is not set, it defaults to camel_working_dir.
  • timeout (Optional[float]): The timeout for the toolkit. (default: :obj:None)
  • default_encoding (str): Default character encoding for text operations. (default: :obj:utf-8)
  • backup_enabled (bool): Whether to create backups of existing files before overwriting. (default: :obj:True)

_resolve_filepath

Convert the given string path to a Path object. If the provided path is not absolute, it is made relative to the default output directory. The filename part is sanitized to replace spaces and special characters with underscores, ensuring safe usage in downstream processing. Parameters:
  • file_path (str): The file path to resolve.
Returns: Path: A fully resolved (absolute) and sanitized Path object.

_sanitize_filename

Sanitize a filename by replacing any character that is not alphanumeric, a dot (.), hyphen (-), or underscore () with an underscore (). Parameters:
  • filename (str): The original filename which may contain spaces or special characters.
Returns: str: The sanitized filename with disallowed characters replaced by underscores.

_write_text_file

Write text content to a plaintext file. Parameters:
  • file_path (Path): The target file path.
  • content (str): The text content to write.
  • encoding (str): Character encoding to use. (default: :obj:utf-8) (default: utf-8)

_generate_unique_filename

Generate a unique filename if the target file already exists. Parameters:
  • file_path (Path): The original file path.
Returns: Path: A unique file path that doesn’t exist yet.

_write_docx_file

Write text content to a DOCX file with default formatting. Parameters:
  • file_path (Path): The target file path.
  • content (str): The text content to write.

_write_pdf_file

Write text content to a PDF file with LaTeX and table support. Parameters:
  • file_path (Path): The target file path.
  • title (str): The document title.
  • content (Union[str, List[List[str]]]): The content to write. Can
  • be: - String: Supports Markdown-style tables and LaTeX math expressions - List[List[str]]: Table data as list of rows for direct table rendering
  • use_latex (bool): Whether to use LaTeX for math rendering. (default: :obj:False)

_process_text_content

Process text content and add to story. Parameters:
  • story: The reportlab story list to append to
  • content (str): The text content to process
  • heading_style: Style for headings
  • body_style: Style for body text

_find_table_line_ranges

Find line ranges that contain markdown tables. Parameters:
  • lines (List[str]): List of lines to analyze.
Returns: List[Tuple[int, int]]: List of (start_line, end_line) tuples for table ranges.

_register_chinese_font

Returns: str: The font name to use for Chinese text.

_parse_markdown_table

Parse markdown-style tables from a list of lines. Parameters:
  • lines (List[str]): List of text lines that may contain tables.
Returns: List[List[List[str]]]: List of tables, where each table is a list of rows, and each row is a list of cells.

_is_table_row

Check if a line appears to be a table row. Parameters:
  • line (str): The line to check.
Returns: bool: True if the line looks like a table row.

_is_table_separator

Check if a line is a table separator (e.g., |---|---|). Parameters:
  • line (str): The line to check.
Returns: bool: True if the line is a table separator.

_parse_table_row

Parse a single table row into cells. Parameters:
  • line (str): The table row line.
Returns: List[str]: List of cell contents.

_create_pdf_table

Create a formatted table for PDF. Parameters:
  • table_data (List[List[str]]): Table data as list of rows.
Returns: Table: A formatted reportlab Table object.

_convert_markdown_to_html

Convert basic markdown formatting to HTML for PDF rendering. Parameters:
  • text (str): Text with markdown formatting.
Returns: str: Text with HTML formatting.

_ensure_html_utf8_meta

Ensure HTML content has UTF-8 meta tag. Parameters:
  • content (str): The HTML content.
Returns: str: HTML content with UTF-8 meta tag.

_write_csv_file

Write CSV content to a file. Parameters:
  • file_path (Path): The target file path.
  • content (Union[str, List[List]]): The CSV content as a string or list of lists.
  • encoding (str): Character encoding to use. (default: :obj:utf-8) (default: utf-8)

_write_json_file

Write JSON content to a file. Parameters:
  • file_path (Path): The target file path.
  • content (str): The JSON content as a string.
  • encoding (str): Character encoding to use. (default: :obj:utf-8) (default: utf-8)

_write_simple_text_file

Write text content to a file (used for HTML, Markdown, YAML, etc.). Parameters:
  • file_path (Path): The target file path.
  • content (str): The content to write.
  • encoding (str): Character encoding to use. (default: :obj:utf-8) (default: utf-8)

write_to_file

Write the given content to a file. If the file exists, it will be overwritten. Supports multiple formats: Markdown (.md, .markdown, default), Plaintext (.txt), CSV (.csv), DOC/DOCX (.doc, .docx), PDF (.pdf), JSON (.json), YAML (.yml, .yaml), and HTML (.html, .htm). Parameters:
  • title (str): The title of the document.
  • content (Union[str, List[List[str]]]): The content to write to the file. Content format varies by file type: - Text formats (txt, md, html, yaml): string - CSV: string or list of lists - JSON: string or serializable object
  • filename (str): The name or path of the file. If a relative path is supplied, it is resolved to self.working_directory.
  • encoding (Optional[str]): The character encoding to use. (default: :obj: None)
  • use_latex (bool): Whether to use LaTeX for math rendering. (default: :obj:False)
Returns: str: A message indicating success or error details.

get_tools

Returns: List[FunctionTool]: A list of FunctionTool objects representing the available functions in this toolkit.