@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
14 lines (13 loc) • 392 B
TypeScript
import type { TupleToUnion } from 'type-fest';
/**
* Script language
*
* Note: [🚉] This is fully serializable as JSON
*/
export type ScriptLanguage = TupleToUnion<typeof SUPPORTED_SCRIPT_LANGUAGES>;
/**
* Supported script languages
*
* @private internal base for `ScriptLanguage`
*/
export declare const SUPPORTED_SCRIPT_LANGUAGES: readonly ["javascript", "typescript", "python"];