UNPKG

@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

22 lines (21 loc) 911 B
/** * workflow/core/responseConditioner.ts * Response conditioning and synthesis * * Uses judge feedback and ensemble responses to synthesize an improved final response. * Combines strengths from multiple responses based on evaluation insights. */ import type { ConditioningConfig, ConditionOptions, ConditionResult } from "../../types/index.js"; /** * Condition response by synthesizing improved version using judge feedback * * @param options - Conditioning options including all responses and judge feedback * @returns Conditioned result with synthesized improved content */ export declare function conditionResponse(options: ConditionOptions): Promise<ConditionResult>; /** * Check if conditioning is enabled * @param config - Conditioning configuration * @returns True if conditioning should be applied */ export declare function isConditioningEnabled(config?: ConditioningConfig): boolean;