mindee
Version:
Mindee Client Library for Node.js
21 lines (20 loc) • 503 B
TypeScript
import { InferenceFields } from "./field";
import { StringDict } from "../common";
import { RawText } from "./rawText";
import { RagMetadata } from "./ragMetadata";
export declare class InferenceResult {
/**
* Fields contained in the inference.
*/
fields: InferenceFields;
/**
* Raw text extracted from all pages.
*/
rawText?: RawText;
/**
* RAG metadata.
*/
rag?: RagMetadata;
constructor(serverResponse: StringDict);
toString(): string;
}