UNPKG

@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.

24 lines (21 loc) 491 B
// sys_openai_chat_gpt51.js import { Prompt } from '../../../server/prompt.js'; export default { prompt: [ new Prompt({ messages: [ "{{messages}}", ] }), ], inputParameters: { messages: [{ role: '', content: [] }], tools: '', tool_choice: 'auto', }, model: 'oai-gpt51', useInputChunking: false, emulateOpenAIChatModel: 'gpt-5.1', timeout: 900 }