pms-analysis-reports-mcp-server
Version:
PMS analysis reports server handling maintenance reports, equipment analysis, compliance tracking, and performance metrics with ERP access for data extraction
14 lines (13 loc) • 574 B
TypeScript
import OpenAI from 'openai';
export declare function getOpenAIClient(): OpenAI;
export interface LLMResponse {
content: string;
usage?: {
prompt_tokens: number;
completion_tokens: number;
total_tokens: number;
};
}
export declare function processWithLLM(prompt: string, systemMessage?: string, model?: string): Promise<LLMResponse>;
export declare function analyzeMaintenanceData(data: any, analysisType?: string): Promise<string>;
export declare function generateMaintenanceReport(reportData: any, reportType?: string): Promise<string>;