@aj-archipelago/cortex
Version: 
Cortex is a GraphQL API for AI. It provides a simple, extensible interface for using AI services from OpenAI, Azure and others.
16 lines • 381 B
JavaScript
export default {
    prompt: `{{text}}`,
    model: `oai-whisper`,
    inputParameters: {
        file: ``,
        language: ``,
        responseFormat: `text`,
        wordTimestamped: false,
        highlightWords: false,
        maxLineWidth: 0,
        maxLineCount: 0,
        maxWordsPerLine: 0,
    },
    timeout: 3600, // in seconds
    enableDuplicateRequests: false,
};