ingest
ingest
¶
Document ingestion — file reading, type detection, directory walking.
Classes¶
DocumentMeta
dataclass
¶
Metadata about an ingested document.
Functions¶
detect_file_type
¶
Map a file extension to one of: text, markdown, pdf, code.
Source code in src/openjarvis/tools/storage/ingest.py
read_document
¶
read_document(path: Path) -> Tuple[str, DocumentMeta]
Read a file and return (text, metadata).
| RAISES | DESCRIPTION |
|---|---|
ImportError
|
If the file is a PDF and |
FileNotFoundError
|
If path does not exist. |
Source code in src/openjarvis/tools/storage/ingest.py
ingest_path
¶
ingest_path(path: Path, *, config: Optional[ChunkConfig] = None) -> List[Chunk]
Ingest a file or directory into chunks.
If path is a file, reads and chunks it. If path is a directory, recursively walks it (skipping hidden and common non-content directories) and chunks each file.
Source code in src/openjarvis/tools/storage/ingest.py
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | |