Skip to content
Snippets Groups Projects
Unverified Commit a63256eb authored by Marcus Schiesser's avatar Marcus Schiesser Committed by GitHub
Browse files

feat: add default file metadata (#758)

parent 0a160b97
No related branches found
No related tags found
No related merge requests found
import type { CompleteFileSystem } from "@llamaindex/env"; import type { CompleteFileSystem } from "@llamaindex/env";
import { defaultFS, path } from "@llamaindex/env"; import { defaultFS, path } from "@llamaindex/env";
import { Document } from "../Node.js"; import { Document, type Metadata } from "../Node.js";
import { walk } from "../storage/FileSystem.js"; import { walk } from "../storage/FileSystem.js";
import { TextFileReader } from "./TextFileReader.js"; import { TextFileReader } from "./TextFileReader.js";
import type { BaseReader } from "./type.js"; import type { BaseReader } from "./type.js";
...@@ -89,6 +89,7 @@ export class SimpleDirectoryReader implements BaseReader { ...@@ -89,6 +89,7 @@ export class SimpleDirectoryReader implements BaseReader {
} }
const fileDocs = await reader.loadData(filePath, fs); const fileDocs = await reader.loadData(filePath, fs);
fileDocs.forEach(addMetaData(filePath));
// Observer can still cancel addition of the resulting docs from this file // Observer can still cancel addition of the resulting docs from this file
if (this.doObserverCheck("file", filePath, ReaderStatus.COMPLETE)) { if (this.doObserverCheck("file", filePath, ReaderStatus.COMPLETE)) {
...@@ -124,3 +125,10 @@ export class SimpleDirectoryReader implements BaseReader { ...@@ -124,3 +125,10 @@ export class SimpleDirectoryReader implements BaseReader {
return true; return true;
} }
} }
function addMetaData(filePath: string): (doc: Document<Metadata>) => void {
return (doc: Document<Metadata>) => {
doc.metadata["file_path"] = path.resolve(filePath);
doc.metadata["file_name"] = path.basename(filePath);
};
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment