mindee
Version:
Mindee Client Library for Node.js
31 lines (30 loc) • 783 B
TypeScript
import { StringDict } from "../common";
import { DataSchemaActiveOption } from "./dataSchemaActiveOption";
export declare class InferenceActiveOptions {
/**
* 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;
}