UNPKG

@promptbook/azure-openai

Version:

Promptbook: Run AI apps in plain human language across multiple models and platforms

13 lines (12 loc) 534 B
import type { ParseResult } from 'papaparse'; import type { TODO_any } from '../../../utils/organization/TODO_any'; import type { Parameters } from '../../../types/typeAliases'; import type { CsvSettings } from '../CsvSettings'; /** * Converts a CSV string into an object * * Note: This is wrapper around `papaparse.parse()` with better autohealing * * @private - for now until `@promptbook/csv` is released */ export declare function csvParse(value: string, settings?: CsvSettings, schema?: TODO_any): ParseResult<Parameters>;