FileHandler#

class ansys.fluent.mcp.common.file_handlers.FileHandler#

Describes one file type the agent can route to a backend.

Overview#

Import detail#

from ansys.fluent.mcp.common.file_handlers import FileHandler

Attribute detail#

FileHandler.name: str#
FileHandler.suffixes: tuple[str, Ellipsis]#
FileHandler.file_type: str#
FileHandler.candidate_products: tuple[str, Ellipsis]#
FileHandler.needs_mode_choice: bool#
FileHandler.probe: Callable[[pathlib.Path], FileProbe]#
FileHandler.build_launch_args: Callable[[str, FileProbe, dict[str, Any]], dict[str, Any]]#
FileHandler.component: str = 'solve'#
FileHandler.description: str = ''#
FileHandler.load_command: str = 'read_case'#
FileHandler.build_load_snippet: Callable[[str, str | None], str] | None = None#