namespace AIStudio.Tools;
///
/// How reading a file ended.
///
public enum FileExtractionOutcome
{
///
/// The whole file was read.
///
SUCCESS,
///
/// Parts of the file could not be read, e.g. single pages of a PDF, while the remaining
/// content is still usable.
///
PARTIAL,
///
/// The file could not be read. There is no content the app is allowed to use.
///
FAILED,
}