Initial commit of akmon project
This commit is contained in:
44
uni_modules/ak-ai-news/index.uts
Normal file
44
uni_modules/ak-ai-news/index.uts
Normal file
@@ -0,0 +1,44 @@
|
||||
// AI News Service Module Index
|
||||
|
||||
export { AITranslationService } from './services/AITranslationService.uts'
|
||||
export { AIContentAnalysisService } from './services/AIContentAnalysisService.uts'
|
||||
export { AIChatService } from './services/AIChatService.uts'
|
||||
export { AIRecommendationService } from './services/AIRecommendationService.uts'
|
||||
export { ContentProcessingPipeline } from './services/ContentProcessingPipeline.uts'
|
||||
export { AIServiceManager } from './services/AIServiceManager.uts'
|
||||
export { AIPerformanceMonitor, defaultPerformanceConfig } from './services/AIPerformanceMonitor.uts'
|
||||
export { AIErrorHandler, defaultErrorHandlingConfig, ErrorCategory, CircuitBreakerState } from './services/AIErrorHandler.uts'
|
||||
|
||||
// Export types
|
||||
export type {
|
||||
TranslationResult,
|
||||
TranslationOptions,
|
||||
ContentAnalysisResult,
|
||||
EntityResult,
|
||||
TopicResult,
|
||||
CategoryResult,
|
||||
ChatMessage,
|
||||
ChatSession,
|
||||
RecommendationResult,
|
||||
ContentInfo,
|
||||
AIProvider,
|
||||
AIServiceConfig,
|
||||
AIResponse,
|
||||
ProcessingStep,
|
||||
UsageStatistics,
|
||||
CacheOptions,
|
||||
BatchProcessingOptions,
|
||||
PerformanceMetrics,
|
||||
SystemHealth,
|
||||
OptimizationRecommendation,
|
||||
ErrorInfo,
|
||||
OperationResult,
|
||||
ErrorHandlingConfig
|
||||
} from './types/ai-types.uts'
|
||||
|
||||
// Module constants
|
||||
export const AI_NEWS_MODULE_VERSION = '1.0.0'
|
||||
export const AI_NEWS_MODULE_NAME = 'ak-ai-news'
|
||||
|
||||
// Module description
|
||||
export const AI_NEWS_MODULE_DESCRIPTION = 'Comprehensive AI-driven multilingual news system with translation, analysis, chat, and recommendation services'
|
||||
Reference in New Issue
Block a user