ontocast.tool.converter¶
Document conversion tools for OntoCast.
This module provides functionality for converting various document formats into structured data that can be processed by the OntoCast system.
ConverterTool
¶
Bases: Tool
Tool for converting documents to structured data.
This class provides functionality for converting various document formats into structured data that can be processed by the OntoCast system. It includes caching to avoid re-converting the same documents.
Attributes:
| Name | Type | Description |
|---|---|---|
supported_extensions |
set[str]
|
Set of supported file extensions. |
cache |
Any
|
Cacher instance for caching conversion results. |
Source code in ontocast/tool/converter.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | |
__call__(file_input)
¶
Convert a document to structured data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_input
|
Union[bytes, str, Path]
|
The input file as either bytes, string, or pathlib.Path. |
required |
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
dict[str, Any]: The converted document data. |
Source code in ontocast/tool/converter.py
__init__(cache=None, **kwargs)
¶
Initialize the converter tool.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cache
|
Cacher | None
|
Optional shared Cacher instance. If None, creates a new one. |
None
|
**kwargs
|
Additional keyword arguments passed to the parent class. |
{}
|