UNPKG

mindee

Version:

Mindee Client Library for Node.js

31 lines (30 loc) 808 B
import { StringDict } from "../../../parsing/stringDict.js"; import { DataSchemaActiveOption } from "./dataSchemaActiveOption.js"; export declare class ExtractionActiveOptions { /** * Whether the RAG feature was activated. */ rag: boolean; /** * Whether the Raw Text feature was activated. */ rawText: boolean; /** * Whether the polygon feature was activated. */ polygon: boolean; /** * Whether the confidence feature was activated. */ confidence: boolean; /** * Whether the text context feature was activated. */ textContext: boolean; /** * Data schema options provided for the inference. */ dataSchema: DataSchemaActiveOption; constructor(serverResponse: StringDict); toString(): string; }