mindee
Version:
Mindee Client Library for Node.js
22 lines (21 loc) • 508 B
TypeScript
import { StringDict } from "../common";
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;
constructor(serverResponse: StringDict);
toString(): string;
}