llm-content-creator 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +309 -0
- package/dist/application/workflow/SyncExecutor.d.ts +75 -0
- package/dist/application/workflow/SyncExecutor.d.ts.map +1 -0
- package/dist/application/workflow/SyncExecutor.js +370 -0
- package/dist/application/workflow/SyncExecutor.js.map +1 -0
- package/dist/application/workflow/types.d.ts +46 -0
- package/dist/application/workflow/types.d.ts.map +1 -0
- package/dist/application/workflow/types.js +7 -0
- package/dist/application/workflow/types.js.map +1 -0
- package/dist/config/index.d.ts +173 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +288 -0
- package/dist/config/index.js.map +1 -0
- package/dist/domain/entities/QualityCheck.d.ts +181 -0
- package/dist/domain/entities/QualityCheck.d.ts.map +1 -0
- package/dist/domain/entities/QualityCheck.js +39 -0
- package/dist/domain/entities/QualityCheck.js.map +1 -0
- package/dist/domain/entities/Result.d.ts +103 -0
- package/dist/domain/entities/Result.d.ts.map +1 -0
- package/dist/domain/entities/Result.js +15 -0
- package/dist/domain/entities/Result.js.map +1 -0
- package/dist/domain/entities/Task.d.ts +130 -0
- package/dist/domain/entities/Task.d.ts.map +1 -0
- package/dist/domain/entities/Task.js +64 -0
- package/dist/domain/entities/Task.js.map +1 -0
- package/dist/domain/entities/TaskStep.d.ts +160 -0
- package/dist/domain/entities/TaskStep.d.ts.map +1 -0
- package/dist/domain/entities/TaskStep.js +30 -0
- package/dist/domain/entities/TaskStep.js.map +1 -0
- package/dist/domain/entities/TokenUsage.d.ts +70 -0
- package/dist/domain/entities/TokenUsage.d.ts.map +1 -0
- package/dist/domain/entities/TokenUsage.js +42 -0
- package/dist/domain/entities/TokenUsage.js.map +1 -0
- package/dist/domain/entities/index.d.ts +11 -0
- package/dist/domain/entities/index.d.ts.map +1 -0
- package/dist/domain/entities/index.js +16 -0
- package/dist/domain/entities/index.js.map +1 -0
- package/dist/domain/repositories/QualityCheckRepository.d.ts +49 -0
- package/dist/domain/repositories/QualityCheckRepository.d.ts.map +1 -0
- package/dist/domain/repositories/QualityCheckRepository.js +5 -0
- package/dist/domain/repositories/QualityCheckRepository.js.map +1 -0
- package/dist/domain/repositories/ResultRepository.d.ts +43 -0
- package/dist/domain/repositories/ResultRepository.d.ts.map +1 -0
- package/dist/domain/repositories/ResultRepository.js +5 -0
- package/dist/domain/repositories/ResultRepository.js.map +1 -0
- package/dist/domain/repositories/TaskRepository.d.ts +240 -0
- package/dist/domain/repositories/TaskRepository.d.ts.map +1 -0
- package/dist/domain/repositories/TaskRepository.js +7 -0
- package/dist/domain/repositories/TaskRepository.js.map +1 -0
- package/dist/domain/workflow/CheckpointManager.d.ts +94 -0
- package/dist/domain/workflow/CheckpointManager.d.ts.map +1 -0
- package/dist/domain/workflow/CheckpointManager.js +224 -0
- package/dist/domain/workflow/CheckpointManager.js.map +1 -0
- package/dist/domain/workflow/ContentCreatorGraph.d.ts +17 -0
- package/dist/domain/workflow/ContentCreatorGraph.d.ts.map +1 -0
- package/dist/domain/workflow/ContentCreatorGraph.js +381 -0
- package/dist/domain/workflow/ContentCreatorGraph.js.map +1 -0
- package/dist/domain/workflow/State.d.ts +172 -0
- package/dist/domain/workflow/State.d.ts.map +1 -0
- package/dist/domain/workflow/State.js +184 -0
- package/dist/domain/workflow/State.js.map +1 -0
- package/dist/domain/workflow/index.d.ts +11 -0
- package/dist/domain/workflow/index.d.ts.map +1 -0
- package/dist/domain/workflow/index.js +15 -0
- package/dist/domain/workflow/index.js.map +1 -0
- package/dist/domain/workflow/nodes/BaseNode.d.ts +134 -0
- package/dist/domain/workflow/nodes/BaseNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/BaseNode.js +253 -0
- package/dist/domain/workflow/nodes/BaseNode.js.map +1 -0
- package/dist/domain/workflow/nodes/CheckImageNode.d.ts +43 -0
- package/dist/domain/workflow/nodes/CheckImageNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/CheckImageNode.js +254 -0
- package/dist/domain/workflow/nodes/CheckImageNode.js.map +1 -0
- package/dist/domain/workflow/nodes/CheckTextNode.d.ts +66 -0
- package/dist/domain/workflow/nodes/CheckTextNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/CheckTextNode.js +530 -0
- package/dist/domain/workflow/nodes/CheckTextNode.js.map +1 -0
- package/dist/domain/workflow/nodes/GenerateImageNode.d.ts +44 -0
- package/dist/domain/workflow/nodes/GenerateImageNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/GenerateImageNode.js +272 -0
- package/dist/domain/workflow/nodes/GenerateImageNode.js.map +1 -0
- package/dist/domain/workflow/nodes/OrganizeNode.d.ts +49 -0
- package/dist/domain/workflow/nodes/OrganizeNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/OrganizeNode.js +241 -0
- package/dist/domain/workflow/nodes/OrganizeNode.js.map +1 -0
- package/dist/domain/workflow/nodes/SearchNode.d.ts +48 -0
- package/dist/domain/workflow/nodes/SearchNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/SearchNode.js +151 -0
- package/dist/domain/workflow/nodes/SearchNode.js.map +1 -0
- package/dist/domain/workflow/nodes/WriteNode.d.ts +68 -0
- package/dist/domain/workflow/nodes/WriteNode.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/WriteNode.js +431 -0
- package/dist/domain/workflow/nodes/WriteNode.js.map +1 -0
- package/dist/domain/workflow/nodes/config/index.js +287 -0
- package/dist/domain/workflow/nodes/domain/entities/Task.js +68 -0
- package/dist/domain/workflow/nodes/domain/workflow/State.js +200 -0
- package/dist/domain/workflow/nodes/domain/workflow/nodes/BaseNode.js +328 -0
- package/dist/domain/workflow/nodes/domain/workflow/nodes/CheckTextNode.js +500 -0
- package/dist/domain/workflow/nodes/index.d.ts +13 -0
- package/dist/domain/workflow/nodes/index.d.ts.map +1 -0
- package/dist/domain/workflow/nodes/index.js +13 -0
- package/dist/domain/workflow/nodes/index.js.map +1 -0
- package/dist/domain/workflow/nodes/infrastructure/logging/logger.js +275 -0
- package/dist/domain/workflow/nodes/services/llm/EnhancedLLMService.js +559 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +34 -0
- package/dist/index.js.map +1 -0
- package/dist/infrastructure/cache/CacheService.d.ts +139 -0
- package/dist/infrastructure/cache/CacheService.d.ts.map +1 -0
- package/dist/infrastructure/cache/CacheService.js +419 -0
- package/dist/infrastructure/cache/CacheService.js.map +1 -0
- package/dist/infrastructure/cache/index.d.ts +5 -0
- package/dist/infrastructure/cache/index.d.ts.map +1 -0
- package/dist/infrastructure/cache/index.js +6 -0
- package/dist/infrastructure/cache/index.js.map +1 -0
- package/dist/infrastructure/database/BaseRepository.d.ts +98 -0
- package/dist/infrastructure/database/BaseRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/BaseRepository.js +178 -0
- package/dist/infrastructure/database/BaseRepository.js.map +1 -0
- package/dist/infrastructure/database/MemoryTaskRepository.d.ts +77 -0
- package/dist/infrastructure/database/MemoryTaskRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/MemoryTaskRepository.js +309 -0
- package/dist/infrastructure/database/MemoryTaskRepository.js.map +1 -0
- package/dist/infrastructure/database/PostgresQualityCheckRepository.d.ts +36 -0
- package/dist/infrastructure/database/PostgresQualityCheckRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/PostgresQualityCheckRepository.js +89 -0
- package/dist/infrastructure/database/PostgresQualityCheckRepository.js.map +1 -0
- package/dist/infrastructure/database/PostgresTaskRepository.d.ts +94 -0
- package/dist/infrastructure/database/PostgresTaskRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/PostgresTaskRepository.js +364 -0
- package/dist/infrastructure/database/PostgresTaskRepository.js.map +1 -0
- package/dist/infrastructure/database/ResultRepository.d.ts +41 -0
- package/dist/infrastructure/database/ResultRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/ResultRepository.js +86 -0
- package/dist/infrastructure/database/ResultRepository.js.map +1 -0
- package/dist/infrastructure/database/SQLiteTaskRepository.d.ts +101 -0
- package/dist/infrastructure/database/SQLiteTaskRepository.d.ts.map +1 -0
- package/dist/infrastructure/database/SQLiteTaskRepository.js +548 -0
- package/dist/infrastructure/database/SQLiteTaskRepository.js.map +1 -0
- package/dist/infrastructure/database/index.d.ts +32 -0
- package/dist/infrastructure/database/index.d.ts.map +1 -0
- package/dist/infrastructure/database/index.js +72 -0
- package/dist/infrastructure/database/index.js.map +1 -0
- package/dist/infrastructure/logging/logger.d.ts +69 -0
- package/dist/infrastructure/logging/logger.d.ts.map +1 -0
- package/dist/infrastructure/logging/logger.js +169 -0
- package/dist/infrastructure/logging/logger.js.map +1 -0
- package/dist/infrastructure/monitoring/LoggingService.d.ts +109 -0
- package/dist/infrastructure/monitoring/LoggingService.d.ts.map +1 -0
- package/dist/infrastructure/monitoring/LoggingService.js +198 -0
- package/dist/infrastructure/monitoring/LoggingService.js.map +1 -0
- package/dist/infrastructure/monitoring/MetricsService.d.ts +112 -0
- package/dist/infrastructure/monitoring/MetricsService.d.ts.map +1 -0
- package/dist/infrastructure/monitoring/MetricsService.js +362 -0
- package/dist/infrastructure/monitoring/MetricsService.js.map +1 -0
- package/dist/infrastructure/monitoring/SentryService.d.ts +108 -0
- package/dist/infrastructure/monitoring/SentryService.d.ts.map +1 -0
- package/dist/infrastructure/monitoring/SentryService.js +282 -0
- package/dist/infrastructure/monitoring/SentryService.js.map +1 -0
- package/dist/infrastructure/monitoring/index.d.ts +7 -0
- package/dist/infrastructure/monitoring/index.d.ts.map +1 -0
- package/dist/infrastructure/monitoring/index.js +10 -0
- package/dist/infrastructure/monitoring/index.js.map +1 -0
- package/dist/infrastructure/queue/TaskQueue.d.ts +110 -0
- package/dist/infrastructure/queue/TaskQueue.d.ts.map +1 -0
- package/dist/infrastructure/queue/TaskQueue.js +363 -0
- package/dist/infrastructure/queue/TaskQueue.js.map +1 -0
- package/dist/infrastructure/queue/index.d.ts +5 -0
- package/dist/infrastructure/queue/index.d.ts.map +1 -0
- package/dist/infrastructure/queue/index.js +5 -0
- package/dist/infrastructure/queue/index.js.map +1 -0
- package/dist/infrastructure/redis/connection.d.ts +61 -0
- package/dist/infrastructure/redis/connection.d.ts.map +1 -0
- package/dist/infrastructure/redis/connection.js +184 -0
- package/dist/infrastructure/redis/connection.js.map +1 -0
- package/dist/infrastructure/redis/index.d.ts +5 -0
- package/dist/infrastructure/redis/index.d.ts.map +1 -0
- package/dist/infrastructure/redis/index.js +5 -0
- package/dist/infrastructure/redis/index.js.map +1 -0
- package/dist/infrastructure/security/ApiKeyService.d.ts +103 -0
- package/dist/infrastructure/security/ApiKeyService.d.ts.map +1 -0
- package/dist/infrastructure/security/ApiKeyService.js +250 -0
- package/dist/infrastructure/security/ApiKeyService.js.map +1 -0
- package/dist/infrastructure/security/QuotaService.d.ts +87 -0
- package/dist/infrastructure/security/QuotaService.d.ts.map +1 -0
- package/dist/infrastructure/security/QuotaService.js +303 -0
- package/dist/infrastructure/security/QuotaService.js.map +1 -0
- package/dist/infrastructure/security/RateLimiter.d.ts +104 -0
- package/dist/infrastructure/security/RateLimiter.d.ts.map +1 -0
- package/dist/infrastructure/security/RateLimiter.js +331 -0
- package/dist/infrastructure/security/RateLimiter.js.map +1 -0
- package/dist/infrastructure/security/index.d.ts +7 -0
- package/dist/infrastructure/security/index.d.ts.map +1 -0
- package/dist/infrastructure/security/index.js +10 -0
- package/dist/infrastructure/security/index.js.map +1 -0
- package/dist/monitoring/index.d.ts +5 -0
- package/dist/monitoring/index.d.ts.map +1 -0
- package/dist/monitoring/index.js +5 -0
- package/dist/monitoring/index.js.map +1 -0
- package/dist/monitoring/server.d.ts +14 -0
- package/dist/monitoring/server.d.ts.map +1 -0
- package/dist/monitoring/server.js +99 -0
- package/dist/monitoring/server.js.map +1 -0
- package/dist/presentation/cli/commands/cancel.d.ts +8 -0
- package/dist/presentation/cli/commands/cancel.d.ts.map +1 -0
- package/dist/presentation/cli/commands/cancel.js +57 -0
- package/dist/presentation/cli/commands/cancel.js.map +1 -0
- package/dist/presentation/cli/commands/create.d.ts +8 -0
- package/dist/presentation/cli/commands/create.d.ts.map +1 -0
- package/dist/presentation/cli/commands/create.js +368 -0
- package/dist/presentation/cli/commands/create.js.map +1 -0
- package/dist/presentation/cli/commands/result.d.ts +8 -0
- package/dist/presentation/cli/commands/result.d.ts.map +1 -0
- package/dist/presentation/cli/commands/result.js +121 -0
- package/dist/presentation/cli/commands/result.js.map +1 -0
- package/dist/presentation/cli/commands/status.d.ts +8 -0
- package/dist/presentation/cli/commands/status.d.ts.map +1 -0
- package/dist/presentation/cli/commands/status.js +92 -0
- package/dist/presentation/cli/commands/status.js.map +1 -0
- package/dist/presentation/cli/index.d.ts +8 -0
- package/dist/presentation/cli/index.d.ts.map +1 -0
- package/dist/presentation/cli/index.js +32 -0
- package/dist/presentation/cli/index.js.map +1 -0
- package/dist/presentation/cli/utils/cleanup.d.ts +14 -0
- package/dist/presentation/cli/utils/cleanup.d.ts.map +1 -0
- package/dist/presentation/cli/utils/cleanup.js +62 -0
- package/dist/presentation/cli/utils/cleanup.js.map +1 -0
- package/dist/presentation/cli/utils/formatter.d.ts +28 -0
- package/dist/presentation/cli/utils/formatter.d.ts.map +1 -0
- package/dist/presentation/cli/utils/formatter.js +68 -0
- package/dist/presentation/cli/utils/formatter.js.map +1 -0
- package/dist/presentation/cli.d.ts +7 -0
- package/dist/presentation/cli.d.ts.map +1 -0
- package/dist/presentation/cli.js +8 -0
- package/dist/presentation/cli.js.map +1 -0
- package/dist/presentation/monitor-cli.d.ts +8 -0
- package/dist/presentation/monitor-cli.d.ts.map +1 -0
- package/dist/presentation/monitor-cli.js +44 -0
- package/dist/presentation/monitor-cli.js.map +1 -0
- package/dist/presentation/worker-cli.d.ts +8 -0
- package/dist/presentation/worker-cli.d.ts.map +1 -0
- package/dist/presentation/worker-cli.js +51 -0
- package/dist/presentation/worker-cli.js.map +1 -0
- package/dist/schedulers/TaskScheduler.d.ts +99 -0
- package/dist/schedulers/TaskScheduler.d.ts.map +1 -0
- package/dist/schedulers/TaskScheduler.js +233 -0
- package/dist/schedulers/TaskScheduler.js.map +1 -0
- package/dist/schedulers/index.d.ts +5 -0
- package/dist/schedulers/index.d.ts.map +1 -0
- package/dist/schedulers/index.js +5 -0
- package/dist/schedulers/index.js.map +1 -0
- package/dist/services/image/ImageService.d.ts +68 -0
- package/dist/services/image/ImageService.d.ts.map +1 -0
- package/dist/services/image/ImageService.js +166 -0
- package/dist/services/image/ImageService.js.map +1 -0
- package/dist/services/index.d.ts +8 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/index.js +12 -0
- package/dist/services/index.js.map +1 -0
- package/dist/services/llm/EnhancedLLMService.d.ts +148 -0
- package/dist/services/llm/EnhancedLLMService.d.ts.map +1 -0
- package/dist/services/llm/EnhancedLLMService.js +425 -0
- package/dist/services/llm/EnhancedLLMService.js.map +1 -0
- package/dist/services/llm/LLMService.d.ts +103 -0
- package/dist/services/llm/LLMService.d.ts.map +1 -0
- package/dist/services/llm/LLMService.js +212 -0
- package/dist/services/llm/LLMService.js.map +1 -0
- package/dist/services/quality/HardRuleChecker.d.ts +143 -0
- package/dist/services/quality/HardRuleChecker.d.ts.map +1 -0
- package/dist/services/quality/HardRuleChecker.js +353 -0
- package/dist/services/quality/HardRuleChecker.js.map +1 -0
- package/dist/services/quality/LLMEvaluator.d.ts +105 -0
- package/dist/services/quality/LLMEvaluator.d.ts.map +1 -0
- package/dist/services/quality/LLMEvaluator.js +312 -0
- package/dist/services/quality/LLMEvaluator.js.map +1 -0
- package/dist/services/quality/QualityCheckService.d.ts +112 -0
- package/dist/services/quality/QualityCheckService.d.ts.map +1 -0
- package/dist/services/quality/QualityCheckService.js +342 -0
- package/dist/services/quality/QualityCheckService.js.map +1 -0
- package/dist/services/quality/QualityService.d.ts +75 -0
- package/dist/services/quality/QualityService.d.ts.map +1 -0
- package/dist/services/quality/QualityService.js +360 -0
- package/dist/services/quality/QualityService.js.map +1 -0
- package/dist/services/quality/index.d.ts +7 -0
- package/dist/services/quality/index.d.ts.map +1 -0
- package/dist/services/quality/index.js +10 -0
- package/dist/services/quality/index.js.map +1 -0
- package/dist/services/search/SearchService.d.ts +79 -0
- package/dist/services/search/SearchService.d.ts.map +1 -0
- package/dist/services/search/SearchService.js +193 -0
- package/dist/services/search/SearchService.js.map +1 -0
- package/dist/workers/TaskWorker.d.ts +61 -0
- package/dist/workers/TaskWorker.d.ts.map +1 -0
- package/dist/workers/TaskWorker.js +256 -0
- package/dist/workers/TaskWorker.js.map +1 -0
- package/dist/workers/index.d.ts +5 -0
- package/dist/workers/index.d.ts.map +1 -0
- package/dist/workers/index.js +5 -0
- package/dist/workers/index.js.map +1 -0
- package/docs/DOCUMENTATION-ANALYSIS.md +190 -0
- package/docs/README.md +145 -0
- package/docs/SOURCE-CODE-ANALYSIS.md +1107 -0
- package/docs/architecture-complete.md +5524 -0
- package/docs/archive/implementation/implementation-analysis/README.md +244 -0
- package/docs/archive/implementation/implementation-analysis/implementation-analysis-context.md +483 -0
- package/docs/archive/implementation/implementation-analysis/implementation-analysis-plan.md +1242 -0
- package/docs/archive/implementation/implementation-analysis/implementation-analysis-tasks.md +777 -0
- package/docs/archive/phases/phase-1/phase-1-completion-summary.md +284 -0
- package/docs/archive/phases/phase-1/phase-1-implementation-guide.md +1380 -0
- package/docs/archive/phases/phase-2/phase-2a/phase-2a-completion-summary.md +443 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-completion-report.md +430 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-completion-summary.md +592 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-final-summary.md +371 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-preparation-complete.md +343 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-preparation.md +945 -0
- package/docs/archive/phases/phase-2/phase-2b/phase-2b-progress-update.md +366 -0
- package/docs/archive/phases/phase-3/phase-3-completion-summary.md +354 -0
- package/docs/archive/phases/phase-3/phase-3-development-plan.md +878 -0
- package/docs/archive/phases/phase-3/phase-3-quick-start.md +324 -0
- package/docs/archive/phases/phase-4/phase-4-completion-summary.md +708 -0
- package/docs/archive/phases/phase-4/phase-4-development-plan.md +740 -0
- package/docs/archive/phases/phase-4/phase-4-quick-start.md +632 -0
- package/docs/archive/phases/phase-4/phase-4-session-3-security-testing.md +484 -0
- package/docs/archive/phases/phase-4/phase-4-session-4-unit-tests.md +550 -0
- package/docs/archive/phases/phase-4/phase-4-session-5-security-tests.md +564 -0
- package/docs/archive/phases/phase-4/phase-4-session-6-cache-integration.md +456 -0
- package/docs/archive/phases/phase-4/phase-4-session-7-test-fixes.md +348 -0
- package/docs/archive/phases/phase-4/phase-4-session-8-taskqueue-fixes.md +323 -0
- package/docs/archive/phases/phase-4/phase-4-session-summary-continued.md +373 -0
- package/docs/archive/phases/phase-4/phase-4-session-summary.md +595 -0
- package/docs/archive/reports/progress-reports/PHASE_0_PROGRESS.md +242 -0
- package/docs/archive/reports/progress-reports/PHASE_0_SUMMARY.md +262 -0
- package/docs/archive/reports/progress-reports/PHASE_1_2_ISSUES.md +399 -0
- package/docs/archive/reports/progress-reports/PHASE_1_PROGRESS.md +388 -0
- package/docs/archive/reports/progress-reports/PHASE_3_PREPARATION.md +574 -0
- package/docs/archive/reports/progress-reports/current-progress-update.md +294 -0
- package/docs/archive/reports/progress-reports/final-summary.md +215 -0
- package/docs/archive/reports/progress-reports/implementation-summary.md +287 -0
- package/docs/archive/reports/progress-reports/project-progress-report.md +440 -0
- package/docs/archive/reports/progress-reports/project-progress.md +386 -0
- package/docs/archive/reports/test-reports/TEST-COVERAGE-REPORT.md +441 -0
- package/docs/archive/reports/test-reports/e2e-test-report.md +293 -0
- package/docs/archive/reports/test-reports/final-test-report.md +367 -0
- package/docs/archive/reports/test-reports/real-env-test-report.md +391 -0
- package/docs/archive/reports/test-reports/test-completion-summary.md +356 -0
- package/docs/archive/reports/test-reports/test-report.md +371 -0
- package/docs/archive/sessions/session-2-summary.md +429 -0
- package/docs/archive/sessions/session-3-summary.md +395 -0
- package/docs/archive/sessions/session-summary.md +370 -0
- package/docs/config-system-update.md +239 -0
- package/docs/database-refactoring-PLAN.md +199 -0
- package/docs/database-refactoring-SUMMARY.md +384 -0
- package/docs/quality-check-architecture.md +1030 -0
- package/docs/quick-start.md +388 -0
- package/docs/references/bullmq-quick-reference.md +525 -0
- package/docs/references/monitoring-optimization-guide.md +871 -0
- package/docs/references/performance-optimization-guide.md +933 -0
- package/docs/storage-guide.md +612 -0
- package/docs/test-implementation-PLAN.md +223 -0
- package/docs/test-implementation-SUMMARY.md +194 -0
- package/docs/user-guide.md +719 -0
- package/docs/workflow-architecture.md +549 -0
- package/package.json +126 -0
- package/src/application/workflow/SyncExecutor.ts +444 -0
- package/src/application/workflow/types.ts +57 -0
- package/src/config/index.ts +352 -0
- package/src/domain/entities/QualityCheck.ts +202 -0
- package/src/domain/entities/Result.ts +130 -0
- package/src/domain/entities/Task.ts +178 -0
- package/src/domain/entities/TaskStep.ts +188 -0
- package/src/domain/entities/TokenUsage.ts +119 -0
- package/src/domain/entities/index.ts +20 -0
- package/src/domain/repositories/QualityCheckRepository.ts +52 -0
- package/src/domain/repositories/ResultRepository.ts +47 -0
- package/src/domain/repositories/TaskRepository.ts +271 -0
- package/src/domain/workflow/CheckpointManager.ts +283 -0
- package/src/domain/workflow/ContentCreatorGraph.ts +446 -0
- package/src/domain/workflow/State.ts +321 -0
- package/src/domain/workflow/index.ts +18 -0
- package/src/domain/workflow/nodes/BaseNode.ts +325 -0
- package/src/domain/workflow/nodes/CheckImageNode.ts +325 -0
- package/src/domain/workflow/nodes/CheckTextNode.ts +709 -0
- package/src/domain/workflow/nodes/GenerateImageNode.ts +342 -0
- package/src/domain/workflow/nodes/OrganizeNode.ts +304 -0
- package/src/domain/workflow/nodes/SearchNode.ts +192 -0
- package/src/domain/workflow/nodes/WriteNode.ts +505 -0
- package/src/domain/workflow/nodes/index.ts +13 -0
- package/src/index.ts +43 -0
- package/src/infrastructure/cache/CacheService.ts +483 -0
- package/src/infrastructure/cache/index.ts +6 -0
- package/src/infrastructure/database/BaseRepository.ts +214 -0
- package/src/infrastructure/database/MemoryTaskRepository.ts +377 -0
- package/src/infrastructure/database/PostgresQualityCheckRepository.ts +115 -0
- package/src/infrastructure/database/PostgresTaskRepository.ts +424 -0
- package/src/infrastructure/database/ResultRepository.ts +113 -0
- package/src/infrastructure/database/SQLiteTaskRepository.ts +651 -0
- package/src/infrastructure/database/index.ts +83 -0
- package/src/infrastructure/logging/logger.ts +231 -0
- package/src/infrastructure/monitoring/LoggingService.ts +292 -0
- package/src/infrastructure/monitoring/MetricsService.ts +468 -0
- package/src/infrastructure/monitoring/SentryService.ts +345 -0
- package/src/infrastructure/monitoring/index.ts +12 -0
- package/src/infrastructure/queue/TaskQueue.ts +429 -0
- package/src/infrastructure/queue/index.ts +5 -0
- package/src/infrastructure/redis/connection.ts +215 -0
- package/src/infrastructure/redis/index.ts +5 -0
- package/src/infrastructure/security/ApiKeyService.ts +340 -0
- package/src/infrastructure/security/QuotaService.ts +411 -0
- package/src/infrastructure/security/RateLimiter.ts +417 -0
- package/src/infrastructure/security/index.ts +12 -0
- package/src/monitoring/index.ts +5 -0
- package/src/monitoring/server.ts +109 -0
- package/src/presentation/cli/commands/cancel.ts +64 -0
- package/src/presentation/cli/commands/create.ts +400 -0
- package/src/presentation/cli/commands/result.ts +136 -0
- package/src/presentation/cli/commands/status.ts +102 -0
- package/src/presentation/cli/index.ts +39 -0
- package/src/presentation/cli/utils/cleanup.ts +65 -0
- package/src/presentation/cli/utils/formatter.ts +74 -0
- package/src/presentation/cli.ts +8 -0
- package/src/presentation/monitor-cli.ts +52 -0
- package/src/presentation/worker-cli.ts +62 -0
- package/src/schedulers/TaskScheduler.ts +314 -0
- package/src/schedulers/index.ts +11 -0
- package/src/services/image/ImageService.ts +221 -0
- package/src/services/index.ts +15 -0
- package/src/services/llm/EnhancedLLMService.ts +596 -0
- package/src/services/llm/LLMService.ts +310 -0
- package/src/services/quality/HardRuleChecker.ts +509 -0
- package/src/services/quality/LLMEvaluator.ts +400 -0
- package/src/services/quality/QualityCheckService.ts +473 -0
- package/src/services/quality/QualityService.ts +445 -0
- package/src/services/quality/index.ts +12 -0
- package/src/services/search/SearchService.ts +266 -0
- package/src/types/global.d.ts +17 -0
- package/src/workers/TaskWorker.ts +320 -0
- package/src/workers/index.ts +5 -0
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Workflow State - 工作流状态定义
|
|
3
|
+
*
|
|
4
|
+
* 定义 LangGraph 工作流的状态结构
|
|
5
|
+
* 每个节点接收完整的 State,返回要更新的字段(Partial<State>)
|
|
6
|
+
*/
|
|
7
|
+
import { ExecutionMode } from '../entities/Task.js';
|
|
8
|
+
// 重新导出 ExecutionMode 以便外部使用
|
|
9
|
+
export { ExecutionMode };
|
|
10
|
+
/**
|
|
11
|
+
* 创建初始状态
|
|
12
|
+
*/
|
|
13
|
+
export function createInitialState(params) {
|
|
14
|
+
return {
|
|
15
|
+
taskId: params.taskId,
|
|
16
|
+
mode: params.mode,
|
|
17
|
+
topic: params.topic,
|
|
18
|
+
requirements: params.requirements,
|
|
19
|
+
hardConstraints: params.hardConstraints || {},
|
|
20
|
+
currentStep: 'start',
|
|
21
|
+
textRetryCount: 0,
|
|
22
|
+
imageRetryCount: 0,
|
|
23
|
+
version: 1, // 初始版本号
|
|
24
|
+
startTime: Date.now(),
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* 状态更新辅助函数
|
|
29
|
+
*/
|
|
30
|
+
export class StateUpdater {
|
|
31
|
+
/**
|
|
32
|
+
* 创建状态更新(类型安全的 Partial)
|
|
33
|
+
*/
|
|
34
|
+
static update(field, value) {
|
|
35
|
+
return { [field]: value };
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* 批量更新状态
|
|
39
|
+
*/
|
|
40
|
+
static updates(updates) {
|
|
41
|
+
return updates;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* 更新当前步骤
|
|
45
|
+
*/
|
|
46
|
+
static updateStep(stepName) {
|
|
47
|
+
return {
|
|
48
|
+
currentStep: stepName,
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* 增加重试计数
|
|
53
|
+
*/
|
|
54
|
+
static incrementTextRetry(state) {
|
|
55
|
+
return {
|
|
56
|
+
textRetryCount: state.textRetryCount + 1,
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
static incrementImageRetry(state) {
|
|
60
|
+
return {
|
|
61
|
+
imageRetryCount: state.imageRetryCount + 1,
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* 标记错误
|
|
66
|
+
*/
|
|
67
|
+
static markError(error) {
|
|
68
|
+
return {
|
|
69
|
+
error,
|
|
70
|
+
endTime: Date.now(),
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* 标记完成
|
|
75
|
+
*/
|
|
76
|
+
static markComplete() {
|
|
77
|
+
return {
|
|
78
|
+
currentStep: 'complete',
|
|
79
|
+
endTime: Date.now(),
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* 状态验证工具
|
|
85
|
+
*/
|
|
86
|
+
export class StateValidator {
|
|
87
|
+
/**
|
|
88
|
+
* 验证状态是否可序列化
|
|
89
|
+
*/
|
|
90
|
+
static validateSerializable(state) {
|
|
91
|
+
try {
|
|
92
|
+
JSON.stringify(state);
|
|
93
|
+
return true;
|
|
94
|
+
}
|
|
95
|
+
catch (error) {
|
|
96
|
+
console.error('State is not serializable:', error);
|
|
97
|
+
return false;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* 验证必需字段
|
|
102
|
+
*/
|
|
103
|
+
static validateRequired(state) {
|
|
104
|
+
const required = [
|
|
105
|
+
'taskId',
|
|
106
|
+
'mode',
|
|
107
|
+
'topic',
|
|
108
|
+
'requirements',
|
|
109
|
+
'hardConstraints',
|
|
110
|
+
'currentStep',
|
|
111
|
+
'textRetryCount',
|
|
112
|
+
'imageRetryCount',
|
|
113
|
+
'version',
|
|
114
|
+
];
|
|
115
|
+
for (const field of required) {
|
|
116
|
+
if (state[field] === undefined || state[field] === null) {
|
|
117
|
+
console.error(`Missing required field: ${field}`);
|
|
118
|
+
return false;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
return true;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* 验证状态完整性
|
|
125
|
+
*/
|
|
126
|
+
static validate(state) {
|
|
127
|
+
return this.validateSerializable(state) && this.validateRequired(state);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* State 快照管理
|
|
132
|
+
*/
|
|
133
|
+
export class StateSnapshotManager {
|
|
134
|
+
/**
|
|
135
|
+
* 序列化状态
|
|
136
|
+
*/
|
|
137
|
+
static serialize(state) {
|
|
138
|
+
if (!StateValidator.validateSerializable(state)) {
|
|
139
|
+
throw new Error('State is not serializable');
|
|
140
|
+
}
|
|
141
|
+
return JSON.stringify(state);
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* 反序列化状态
|
|
145
|
+
*/
|
|
146
|
+
static deserialize(json) {
|
|
147
|
+
try {
|
|
148
|
+
const state = JSON.parse(json);
|
|
149
|
+
if (!StateValidator.validate(state)) {
|
|
150
|
+
throw new Error('Invalid state structure');
|
|
151
|
+
}
|
|
152
|
+
return state;
|
|
153
|
+
}
|
|
154
|
+
catch (error) {
|
|
155
|
+
console.error('Failed to deserialize state:', error);
|
|
156
|
+
throw error;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* 克隆状态(深拷贝)
|
|
161
|
+
*/
|
|
162
|
+
static clone(state) {
|
|
163
|
+
return JSON.parse(JSON.stringify(state));
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* 创建检查点快照(只保存必要字段)
|
|
167
|
+
*/
|
|
168
|
+
static createCheckpoint(state) {
|
|
169
|
+
return {
|
|
170
|
+
searchResults: state.searchResults,
|
|
171
|
+
organizedInfo: state.organizedInfo,
|
|
172
|
+
articleContent: state.articleContent,
|
|
173
|
+
imagePrompts: state.imagePrompts,
|
|
174
|
+
images: state.images,
|
|
175
|
+
textQualityReport: state.textQualityReport,
|
|
176
|
+
imageQualityReport: state.imageQualityReport,
|
|
177
|
+
currentStep: state.currentStep,
|
|
178
|
+
textRetryCount: state.textRetryCount,
|
|
179
|
+
imageRetryCount: state.imageRetryCount,
|
|
180
|
+
version: state.version,
|
|
181
|
+
};
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
//# sourceMappingURL=State.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"State.js","sourceRoot":"","sources":["../../../src/domain/workflow/State.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Workflow 层导出
|
|
3
|
+
*
|
|
4
|
+
* 统一导出所有工作流相关的类和接口
|
|
5
|
+
*/
|
|
6
|
+
export * from './State.js';
|
|
7
|
+
export * from './nodes/BaseNode.js';
|
|
8
|
+
export * from './nodes/index.js';
|
|
9
|
+
export * from './CheckpointManager.js';
|
|
10
|
+
export * from './ContentCreatorGraph.js';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/domain/workflow/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,cAAc,YAAY,CAAC;AAG3B,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AAGjC,cAAc,wBAAwB,CAAC;AAGvC,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Workflow 层导出
|
|
3
|
+
*
|
|
4
|
+
* 统一导出所有工作流相关的类和接口
|
|
5
|
+
*/
|
|
6
|
+
// State
|
|
7
|
+
export * from './State.js';
|
|
8
|
+
// Nodes
|
|
9
|
+
export * from './nodes/BaseNode.js';
|
|
10
|
+
export * from './nodes/index.js';
|
|
11
|
+
// Checkpoint Manager
|
|
12
|
+
export * from './CheckpointManager.js';
|
|
13
|
+
// Graph
|
|
14
|
+
export * from './ContentCreatorGraph.js';
|
|
15
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/domain/workflow/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,QAAQ;AACR,cAAc,YAAY,CAAC;AAE3B,QAAQ;AACR,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC;AAEjC,qBAAqB;AACrB,cAAc,wBAAwB,CAAC;AAEvC,QAAQ;AACR,cAAc,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BaseNode - 节点基类
|
|
3
|
+
*
|
|
4
|
+
* 所有工作流节点的基类,提供通用功能:
|
|
5
|
+
* - 错误处理
|
|
6
|
+
* - Token 记录
|
|
7
|
+
* - 日志记录
|
|
8
|
+
* - 状态验证
|
|
9
|
+
* - 重试支持
|
|
10
|
+
*/
|
|
11
|
+
import type { WorkflowState } from '../State.js';
|
|
12
|
+
/**
|
|
13
|
+
* 节点执行结果
|
|
14
|
+
*/
|
|
15
|
+
export interface NodeResult {
|
|
16
|
+
success: boolean;
|
|
17
|
+
stateUpdate: Partial<WorkflowState>;
|
|
18
|
+
error?: string;
|
|
19
|
+
tokenUsage?: {
|
|
20
|
+
tokensIn: number;
|
|
21
|
+
tokensOut: number;
|
|
22
|
+
totalTokens: number;
|
|
23
|
+
};
|
|
24
|
+
duration: number;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* 节点配置
|
|
28
|
+
*/
|
|
29
|
+
export interface NodeConfig {
|
|
30
|
+
name: string;
|
|
31
|
+
retryCount?: number;
|
|
32
|
+
timeout?: number;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* 节点基类
|
|
36
|
+
*/
|
|
37
|
+
export declare abstract class BaseNode {
|
|
38
|
+
protected readonly name: string;
|
|
39
|
+
protected readonly retryCount: number;
|
|
40
|
+
protected readonly timeout: number;
|
|
41
|
+
protected readonly logger: import("../../../infrastructure/logging/logger.js").Logger;
|
|
42
|
+
constructor(config: NodeConfig);
|
|
43
|
+
/**
|
|
44
|
+
* 执行节点(带重试和错误处理)
|
|
45
|
+
*
|
|
46
|
+
* @param state - 当前工作流状态
|
|
47
|
+
* @returns 节点执行结果
|
|
48
|
+
*/
|
|
49
|
+
execute(state: WorkflowState): Promise<NodeResult>;
|
|
50
|
+
/**
|
|
51
|
+
* 抽象方法:节点具体逻辑(由子类实现)
|
|
52
|
+
*
|
|
53
|
+
* @param state - 当前工作流状态
|
|
54
|
+
* @returns 状态更新(Partial<WorkflowState>)
|
|
55
|
+
*/
|
|
56
|
+
protected abstract executeLogic(state: WorkflowState): Promise<Partial<WorkflowState>>;
|
|
57
|
+
/**
|
|
58
|
+
* 验证状态(可选,由子类重写)
|
|
59
|
+
*
|
|
60
|
+
* @param state - 当前工作流状态
|
|
61
|
+
* @throws Error 如果状态无效
|
|
62
|
+
*/
|
|
63
|
+
protected validateState(state: WorkflowState): void;
|
|
64
|
+
/**
|
|
65
|
+
* 获取当前尝试次数(可选,由子类重写)
|
|
66
|
+
*
|
|
67
|
+
* @param state - 当前工作流状态
|
|
68
|
+
* @returns 尝试次数
|
|
69
|
+
*/
|
|
70
|
+
protected getAttemptCount(_state: WorkflowState): number;
|
|
71
|
+
/**
|
|
72
|
+
* 执行节点逻辑(带超时控制)
|
|
73
|
+
*
|
|
74
|
+
* @param state - 当前工作流状态
|
|
75
|
+
* @returns 状态更新
|
|
76
|
+
*/
|
|
77
|
+
private executeWithTimeout;
|
|
78
|
+
/**
|
|
79
|
+
* 创建超时 Promise
|
|
80
|
+
*/
|
|
81
|
+
private createTimeoutPromise;
|
|
82
|
+
/**
|
|
83
|
+
* 记录 LLM Token 使用(可选,由子类调用)
|
|
84
|
+
*
|
|
85
|
+
* @param state - 工作流状态
|
|
86
|
+
* @param tokensIn - 输入 Token 数量
|
|
87
|
+
* @param tokensOut - 输出 Token 数量
|
|
88
|
+
*/
|
|
89
|
+
protected recordTokenUsage(state: WorkflowState, tokensIn: number, tokensOut: number): void;
|
|
90
|
+
/**
|
|
91
|
+
* 创建状态更新辅助函数
|
|
92
|
+
*/
|
|
93
|
+
protected updateState<T extends keyof WorkflowState>(field: T, value: WorkflowState[T]): Partial<WorkflowState>;
|
|
94
|
+
/**
|
|
95
|
+
* 转换为 LangGraph 节点
|
|
96
|
+
*
|
|
97
|
+
* @returns LangGraph 节点函数
|
|
98
|
+
*/
|
|
99
|
+
toLangGraphNode(): (state: WorkflowState) => Promise<Partial<WorkflowState>>;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* 节点执行上下文
|
|
103
|
+
*
|
|
104
|
+
* 提供额外的工具和方法供节点使用
|
|
105
|
+
*/
|
|
106
|
+
export declare class NodeContext {
|
|
107
|
+
protected readonly logger: import("../../../infrastructure/logging/logger.js").Logger;
|
|
108
|
+
constructor(nodeName: string);
|
|
109
|
+
/**
|
|
110
|
+
* 生成 Trace ID(用于链路追踪)
|
|
111
|
+
*/
|
|
112
|
+
generateTraceId(): string;
|
|
113
|
+
/**
|
|
114
|
+
* 延迟执行(毫秒)
|
|
115
|
+
*/
|
|
116
|
+
delay(ms: number): Promise<void>;
|
|
117
|
+
/**
|
|
118
|
+
* 计算文本的 Token 数量(估算)
|
|
119
|
+
*/
|
|
120
|
+
estimateTokens(text: string): number;
|
|
121
|
+
/**
|
|
122
|
+
* 截断文本到指定 Token 数量
|
|
123
|
+
*/
|
|
124
|
+
truncateToTokens(text: string, maxTokens: number): string;
|
|
125
|
+
/**
|
|
126
|
+
* 安全地解析 JSON
|
|
127
|
+
*/
|
|
128
|
+
safeParseJSON<T>(json: string, fallback: T): T;
|
|
129
|
+
/**
|
|
130
|
+
* 格式化错误消息
|
|
131
|
+
*/
|
|
132
|
+
formatError(error: unknown): string;
|
|
133
|
+
}
|
|
134
|
+
//# sourceMappingURL=BaseNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BaseNode.d.ts","sourceRoot":"","sources":["../../../../src/domain/workflow/nodes/BaseNode.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAKjD;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,OAAO,EAAE,OAAO,CAAC;IACjB,WAAW,EAAE,OAAO,CAAC,aAAa,CAAC,CAAC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE;QACX,QAAQ,EAAE,MAAM,CAAC;QACjB,SAAS,EAAE,MAAM,CAAC;QAClB,WAAW,EAAE,MAAM,CAAC;KACrB,CAAC;IACF,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,8BAAsB,QAAQ;IAC5B,SAAS,CAAC,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IAChC,SAAS,CAAC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IACtC,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACnC,SAAS,CAAC,QAAQ,CAAC,MAAM,6DAAC;gBAEd,MAAM,EAAE,UAAU;IAO9B;;;;;OAKG;IACG,OAAO,CAAC,KAAK,EAAE,aAAa,GAAG,OAAO,CAAC,UAAU,CAAC;IA4DxD;;;;;OAKG;IACH,SAAS,CAAC,QAAQ,CAAC,YAAY,CAAC,KAAK,EAAE,aAAa,GAAG,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;IAEtF;;;;;OAKG;IACH,SAAS,CAAC,aAAa,CAAC,KAAK,EAAE,aAAa,GAAG,IAAI;IAOnD;;;;;OAKG;IACH,SAAS,CAAC,eAAe,CAAC,MAAM,EAAE,aAAa,GAAG,MAAM;IAMxD;;;;;OAKG;YACW,kBAAkB;IAOhC;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAQ5B;;;;;;OAMG;IACH,SAAS,CAAC,gBAAgB,CACxB,KAAK,EAAE,aAAa,EACpB,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,GAChB,IAAI;IAuBP;;OAEG;IACH,SAAS,CAAC,WAAW,CAAC,CAAC,SAAS,MAAM,aAAa,EACjD,KAAK,EAAE,CAAC,EACR,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,GACtB,OAAO,CAAC,aAAa,CAAC;IAIzB;;;;OAIG;IACH,eAAe,IAAI,CAAC,KAAK,EAAE,aAAa,KAAK,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;CAkB7E;AAED;;;;GAIG;AACH,qBAAa,WAAW;IACtB,SAAS,CAAC,QAAQ,CAAC,MAAM,6DAAC;gBAEd,QAAQ,EAAE,MAAM;IAI5B;;OAEG;IACH,eAAe,IAAI,MAAM;IAIzB;;OAEG;IACG,KAAK,CAAC,EAAE,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAItC;;OAEG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;IAQpC;;OAEG;IACH,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,MAAM;IAazD;;OAEG;IACH,aAAa,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,GAAG,CAAC;IAW9C;;OAEG;IACH,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM;CAMpC"}
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BaseNode - 节点基类
|
|
3
|
+
*
|
|
4
|
+
* 所有工作流节点的基类,提供通用功能:
|
|
5
|
+
* - 错误处理
|
|
6
|
+
* - Token 记录
|
|
7
|
+
* - 日志记录
|
|
8
|
+
* - 状态验证
|
|
9
|
+
* - 重试支持
|
|
10
|
+
*/
|
|
11
|
+
import { createLogger } from '../../../infrastructure/logging/logger.js';
|
|
12
|
+
const logger = createLogger('BaseNode');
|
|
13
|
+
/**
|
|
14
|
+
* 节点基类
|
|
15
|
+
*/
|
|
16
|
+
export class BaseNode {
|
|
17
|
+
name;
|
|
18
|
+
retryCount;
|
|
19
|
+
timeout;
|
|
20
|
+
logger;
|
|
21
|
+
constructor(config) {
|
|
22
|
+
this.name = config.name;
|
|
23
|
+
this.retryCount = config.retryCount ?? 0;
|
|
24
|
+
this.timeout = config.timeout ?? 60000; // 60 秒默认超时
|
|
25
|
+
this.logger = createLogger(`Node:${this.name}`);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* 执行节点(带重试和错误处理)
|
|
29
|
+
*
|
|
30
|
+
* @param state - 当前工作流状态
|
|
31
|
+
* @returns 节点执行结果
|
|
32
|
+
*/
|
|
33
|
+
async execute(state) {
|
|
34
|
+
const startTime = Date.now();
|
|
35
|
+
const attempt = this.getAttemptCount(state);
|
|
36
|
+
this.logger.info('Node execution started', {
|
|
37
|
+
nodeId: this.name,
|
|
38
|
+
taskId: state.taskId,
|
|
39
|
+
attempt: attempt + 1,
|
|
40
|
+
});
|
|
41
|
+
try {
|
|
42
|
+
// 验证状态
|
|
43
|
+
this.validateState(state);
|
|
44
|
+
// 执行节点逻辑(带超时)
|
|
45
|
+
const stateUpdate = await this.executeWithTimeout(state);
|
|
46
|
+
// 计算执行时长
|
|
47
|
+
const duration = Date.now() - startTime;
|
|
48
|
+
// 记录成功日志
|
|
49
|
+
this.logger.info('Node execution completed', {
|
|
50
|
+
nodeId: this.name,
|
|
51
|
+
taskId: state.taskId,
|
|
52
|
+
duration,
|
|
53
|
+
});
|
|
54
|
+
// 返回结果
|
|
55
|
+
return {
|
|
56
|
+
success: true,
|
|
57
|
+
stateUpdate: {
|
|
58
|
+
...stateUpdate,
|
|
59
|
+
currentStep: this.name,
|
|
60
|
+
},
|
|
61
|
+
duration,
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
catch (error) {
|
|
65
|
+
const duration = Date.now() - startTime;
|
|
66
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
67
|
+
// 记录错误日志
|
|
68
|
+
this.logger.error('Node execution failed', {
|
|
69
|
+
nodeId: this.name,
|
|
70
|
+
taskId: state.taskId,
|
|
71
|
+
error: errorMessage,
|
|
72
|
+
duration,
|
|
73
|
+
});
|
|
74
|
+
// 返回错误结果
|
|
75
|
+
return {
|
|
76
|
+
success: false,
|
|
77
|
+
stateUpdate: {
|
|
78
|
+
error: errorMessage,
|
|
79
|
+
},
|
|
80
|
+
error: errorMessage,
|
|
81
|
+
duration,
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* 验证状态(可选,由子类重写)
|
|
87
|
+
*
|
|
88
|
+
* @param state - 当前工作流状态
|
|
89
|
+
* @throws Error 如果状态无效
|
|
90
|
+
*/
|
|
91
|
+
validateState(state) {
|
|
92
|
+
// 默认验证:检查是否有错误
|
|
93
|
+
if (state.error) {
|
|
94
|
+
throw new Error(`Previous error: ${state.error}`);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* 获取当前尝试次数(可选,由子类重写)
|
|
99
|
+
*
|
|
100
|
+
* @param state - 当前工作流状态
|
|
101
|
+
* @returns 尝试次数
|
|
102
|
+
*/
|
|
103
|
+
getAttemptCount(_state) {
|
|
104
|
+
// 默认:返回 0
|
|
105
|
+
// 子类可以根据 state 中的重试计数器返回实际值
|
|
106
|
+
return 0;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* 执行节点逻辑(带超时控制)
|
|
110
|
+
*
|
|
111
|
+
* @param state - 当前工作流状态
|
|
112
|
+
* @returns 状态更新
|
|
113
|
+
*/
|
|
114
|
+
async executeWithTimeout(state) {
|
|
115
|
+
return Promise.race([
|
|
116
|
+
this.executeLogic(state),
|
|
117
|
+
this.createTimeoutPromise(),
|
|
118
|
+
]);
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* 创建超时 Promise
|
|
122
|
+
*/
|
|
123
|
+
createTimeoutPromise() {
|
|
124
|
+
return new Promise((_, reject) => {
|
|
125
|
+
setTimeout(() => {
|
|
126
|
+
reject(new Error(`Node timeout: ${this.name} exceeded ${this.timeout}ms`));
|
|
127
|
+
}, this.timeout);
|
|
128
|
+
});
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* 记录 LLM Token 使用(可选,由子类调用)
|
|
132
|
+
*
|
|
133
|
+
* @param state - 工作流状态
|
|
134
|
+
* @param tokensIn - 输入 Token 数量
|
|
135
|
+
* @param tokensOut - 输出 Token 数量
|
|
136
|
+
*/
|
|
137
|
+
recordTokenUsage(state, tokensIn, tokensOut) {
|
|
138
|
+
this.logger.debug('Token usage recorded', {
|
|
139
|
+
nodeId: this.name,
|
|
140
|
+
taskId: state.taskId,
|
|
141
|
+
tokensIn,
|
|
142
|
+
tokensOut,
|
|
143
|
+
totalTokens: tokensIn + tokensOut,
|
|
144
|
+
});
|
|
145
|
+
// TODO: 保存到数据库(后续实现)
|
|
146
|
+
// await tokenUsageRepo.create({
|
|
147
|
+
// taskId: state.taskId,
|
|
148
|
+
// traceId: generateTraceId(),
|
|
149
|
+
// stepName: this.name,
|
|
150
|
+
// apiName: 'deepseek',
|
|
151
|
+
// modelName: 'deepseek-chat',
|
|
152
|
+
// tokensIn,
|
|
153
|
+
// tokensOut,
|
|
154
|
+
// totalTokens: tokensIn + tokensOut,
|
|
155
|
+
// ...
|
|
156
|
+
// });
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* 创建状态更新辅助函数
|
|
160
|
+
*/
|
|
161
|
+
updateState(field, value) {
|
|
162
|
+
return { [field]: value };
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* 转换为 LangGraph 节点
|
|
166
|
+
*
|
|
167
|
+
* @returns LangGraph 节点函数
|
|
168
|
+
*/
|
|
169
|
+
toLangGraphNode() {
|
|
170
|
+
return async (state) => {
|
|
171
|
+
logger.debug(`Node ${this.name} received state`, {
|
|
172
|
+
taskId: state.taskId,
|
|
173
|
+
topic: state.topic,
|
|
174
|
+
hasTopic: !!state.topic,
|
|
175
|
+
stateKeys: Object.keys(state),
|
|
176
|
+
});
|
|
177
|
+
const result = await this.execute(state);
|
|
178
|
+
if (!result.success) {
|
|
179
|
+
throw new Error(result.error || 'Node execution failed');
|
|
180
|
+
}
|
|
181
|
+
return result.stateUpdate;
|
|
182
|
+
};
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* 节点执行上下文
|
|
187
|
+
*
|
|
188
|
+
* 提供额外的工具和方法供节点使用
|
|
189
|
+
*/
|
|
190
|
+
export class NodeContext {
|
|
191
|
+
logger;
|
|
192
|
+
constructor(nodeName) {
|
|
193
|
+
this.logger = createLogger(`Node:${nodeName}`);
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* 生成 Trace ID(用于链路追踪)
|
|
197
|
+
*/
|
|
198
|
+
generateTraceId() {
|
|
199
|
+
return `${Date.now()}-${Math.random().toString(36).substring(2, 15)}`;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* 延迟执行(毫秒)
|
|
203
|
+
*/
|
|
204
|
+
async delay(ms) {
|
|
205
|
+
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* 计算文本的 Token 数量(估算)
|
|
209
|
+
*/
|
|
210
|
+
estimateTokens(text) {
|
|
211
|
+
// 粗略估算:英文约 4 字符/token,中文约 1.5 字符/token
|
|
212
|
+
const chineseChars = (text.match(/[\u4e00-\u9fa5]/g) || []).length;
|
|
213
|
+
const englishChars = text.length - chineseChars;
|
|
214
|
+
return Math.ceil(chineseChars / 1.5 + englishChars / 4);
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* 截断文本到指定 Token 数量
|
|
218
|
+
*/
|
|
219
|
+
truncateToTokens(text, maxTokens) {
|
|
220
|
+
const estimatedTokens = this.estimateTokens(text);
|
|
221
|
+
if (estimatedTokens <= maxTokens) {
|
|
222
|
+
return text;
|
|
223
|
+
}
|
|
224
|
+
// 粗略截断:按比例缩短
|
|
225
|
+
const ratio = maxTokens / estimatedTokens;
|
|
226
|
+
const truncatedLength = Math.floor(text.length * ratio);
|
|
227
|
+
return text.substring(0, truncatedLength);
|
|
228
|
+
}
|
|
229
|
+
/**
|
|
230
|
+
* 安全地解析 JSON
|
|
231
|
+
*/
|
|
232
|
+
safeParseJSON(json, fallback) {
|
|
233
|
+
try {
|
|
234
|
+
return JSON.parse(json);
|
|
235
|
+
}
|
|
236
|
+
catch (error) {
|
|
237
|
+
this.logger.warn('Failed to parse JSON, using fallback', {
|
|
238
|
+
error: error instanceof Error ? error.message : String(error),
|
|
239
|
+
});
|
|
240
|
+
return fallback;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
/**
|
|
244
|
+
* 格式化错误消息
|
|
245
|
+
*/
|
|
246
|
+
formatError(error) {
|
|
247
|
+
if (error instanceof Error) {
|
|
248
|
+
return error.message;
|
|
249
|
+
}
|
|
250
|
+
return String(error);
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
//# sourceMappingURL=BaseNode.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BaseNode.js","sourceRoot":"","sources":["../../../../src/domain/workflow/nodes/BaseNode.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CheckImage Node - 配图质检节点
|
|
3
|
+
*
|
|
4
|
+
* 对生成的配图进行质量检查
|
|
5
|
+
*/
|
|
6
|
+
import { BaseNode } from './BaseNode.js';
|
|
7
|
+
import type { WorkflowState } from '../State.js';
|
|
8
|
+
/**
|
|
9
|
+
* CheckImage Node 配置
|
|
10
|
+
*/
|
|
11
|
+
interface CheckImageNodeConfig {
|
|
12
|
+
minPassingScore?: number;
|
|
13
|
+
scoreWeights?: {
|
|
14
|
+
relevance: number;
|
|
15
|
+
aesthetic: number;
|
|
16
|
+
promptMatch: number;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* CheckImage Node 实现
|
|
21
|
+
*/
|
|
22
|
+
export declare class CheckImageNode extends BaseNode {
|
|
23
|
+
private config;
|
|
24
|
+
constructor(config?: CheckImageNodeConfig);
|
|
25
|
+
/**
|
|
26
|
+
* 调用 LLM 评估单张图片
|
|
27
|
+
*/
|
|
28
|
+
private evaluateImage;
|
|
29
|
+
/**
|
|
30
|
+
* 执行质检逻辑
|
|
31
|
+
*/
|
|
32
|
+
protected executeLogic(state: WorkflowState): Promise<Partial<WorkflowState>>;
|
|
33
|
+
/**
|
|
34
|
+
* 验证输入状态
|
|
35
|
+
*/
|
|
36
|
+
protected validateState(state: WorkflowState): void;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* CheckImage Node 单例导出(默认配置)
|
|
40
|
+
*/
|
|
41
|
+
export declare const checkImageNode: CheckImageNode;
|
|
42
|
+
export {};
|
|
43
|
+
//# sourceMappingURL=CheckImageNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckImageNode.d.ts","sourceRoot":"","sources":["../../../../src/domain/workflow/nodes/CheckImageNode.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAoEjD;;GAEG;AACH,UAAU,oBAAoB;IAC5B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,YAAY,CAAC,EAAE;QACb,SAAS,EAAE,MAAM,CAAC;QAClB,SAAS,EAAE,MAAM,CAAC;QAClB,WAAW,EAAE,MAAM,CAAC;KACrB,CAAC;CACH;AAED;;GAEG;AACH,qBAAa,cAAe,SAAQ,QAAQ;IAC1C,OAAO,CAAC,MAAM,CAAuB;gBAEzB,MAAM,GAAE,oBAAyB;IAkB7C;;OAEG;YACW,aAAa;IAyE3B;;OAEG;cACa,YAAY,CAAC,KAAK,EAAE,aAAa,GAAG,OAAO,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;IAwHnF;;OAEG;IACH,SAAS,CAAC,aAAa,CAAC,KAAK,EAAE,aAAa,GAAG,IAAI;CAMpD;AAED;;GAEG;AACH,eAAO,MAAM,cAAc,gBAAuB,CAAC"}
|