namespace AIStudio.Tools.Web;
///
/// What a retrieved web resource turned out to be, which decides how its content was read.
///
public enum WebContentKind
{
///
/// An HTML page. Its readable part was extracted and converted to Markdown, so the content
/// can be shorter than the page when the extraction missed something.
///
HTML_PAGE,
///
/// A text document such as plain text, JSON, XML, or CSV. The extracted Markdown is its text
/// as the server sent it, so nothing of it was left out.
///
TEXT_DOCUMENT,
}