@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
18 lines (17 loc) • 777 B
TypeScript
import type { TODO_any } from '../../utils/organization/TODO_any';
import type { FormatParser } from '../_common/FormatParser';
import type { CsvSettings } from './CsvSettings';
/**
* Definition for CSV spreadsheet
*
* @public exported from `@promptbook/core`
* <- TODO: [🏢] Export from package `@promptbook/csv`
*/
export declare const CsvFormatParser: FormatParser<string, string, CsvSettings, TODO_any>;
/**
* TODO: [🍓] In `CsvFormatParser` implement simple `isValid`
* TODO: [🍓] In `CsvFormatParser` implement partial `canBeValid`
* TODO: [🍓] In `CsvFormatParser` implement `heal
* TODO: [🍓] In `CsvFormatParser` implement `subvalueParsers`
* TODO: [🏢] Allow to expect something inside CSV objects and other formats
*/