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.

15 lines (12 loc) 284 B
// embeddings.js // Embeddings module that returns the embeddings for the text. export default { prompt: `{{text}}`, model: 'azure-embeddings', enableCache: true, inputParameters: { input: [], }, enableDuplicateRequests: false, timeout: 300, };