@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
14 lines (13 loc) • 633 B
TypeScript
/**
* LAYER-BASED EXECUTION - USAGE EXAMPLES
* ======================================
*
* Demonstrates ModelGroup-based execution with sequential and parallel strategies
*/
import type { WorkflowConfig } from "../types/index.js";
declare const simpleParallelWorkflow: WorkflowConfig;
declare const fastThenPremiumWorkflow: WorkflowConfig;
declare const fallbackChainWorkflow: WorkflowConfig;
declare const mixedStrategyWorkflow: WorkflowConfig;
declare const costOptimizedWorkflow: WorkflowConfig;
export { simpleParallelWorkflow, fastThenPremiumWorkflow, fallbackChainWorkflow, mixedStrategyWorkflow, costOptimizedWorkflow, };