@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
11 lines (10 loc) • 319 B
TypeScript
import { AbstractFormatError } from "../../errors/AbstractFormatError";
/**
* This error indicates problem with parsing of CSV
*
* @public exported from `@promptbook/core`
*/
export declare class CsvFormatError extends AbstractFormatError {
readonly name = "CsvFormatError";
constructor(message: string);
}