Class ParsedDocument
Represents parser output before it is converted into a RagDocument.
public class ParsedDocument
- Inheritance
-
ParsedDocument
- Inherited Members
Constructors
ParsedDocument()
public ParsedDocument()
ParsedDocument(string)
public ParsedDocument(string content)
Parameters
contentstring
Properties
Content
The extracted text content.
public string Content { get; set; }
Property Value
Metadata
Metadata extracted by the parser (title, page count, etc.).
public Dictionary<string, string> Metadata { get; set; }