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,321 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Workflow State - 工作流状态定义
|
|
3
|
+
*
|
|
4
|
+
* 定义 LangGraph 工作流的状态结构
|
|
5
|
+
* 每个节点接收完整的 State,返回要更新的字段(Partial<State>)
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import { ExecutionMode } from '../entities/Task.js';
|
|
9
|
+
|
|
10
|
+
// 重新导出 ExecutionMode 以便外部使用
|
|
11
|
+
export { ExecutionMode };
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* 搜索结果项
|
|
15
|
+
*/
|
|
16
|
+
export interface SearchResultItem {
|
|
17
|
+
title: string;
|
|
18
|
+
url: string;
|
|
19
|
+
content: string;
|
|
20
|
+
score?: number;
|
|
21
|
+
publishedDate?: string;
|
|
22
|
+
author?: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 整理后的信息
|
|
27
|
+
*/
|
|
28
|
+
export interface OrganizedInfo {
|
|
29
|
+
outline: string; // 文章大纲
|
|
30
|
+
keyPoints: string[]; // 关键点列表
|
|
31
|
+
summary: string; // 摘要
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* 质检报告
|
|
36
|
+
*/
|
|
37
|
+
import type { QualityCheckDetails } from '../entities/QualityCheck.js';
|
|
38
|
+
|
|
39
|
+
export interface QualityReport {
|
|
40
|
+
score: number; // 评分(1-10)
|
|
41
|
+
passed: boolean; // 是否通过
|
|
42
|
+
hardConstraintsPassed: boolean; // 硬性约束是否通过
|
|
43
|
+
modelName?: string; // 使用的模型名称
|
|
44
|
+
details: QualityCheckDetails; // 质检详情
|
|
45
|
+
fixSuggestions?: string[]; // 改进建议(用于重写/重生成)
|
|
46
|
+
checkedAt?: number; // 检查时间戳
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* 图片生成结果
|
|
51
|
+
*/
|
|
52
|
+
export interface GeneratedImage {
|
|
53
|
+
url: string; // 图片 URL
|
|
54
|
+
prompt: string; // 使用的提示词
|
|
55
|
+
width?: number; // 宽度
|
|
56
|
+
height?: number; // 高度
|
|
57
|
+
format?: string; // 格式
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* 工作流状态
|
|
62
|
+
*
|
|
63
|
+
* 注意:
|
|
64
|
+
* - State 必须可序列化(JSON.stringify)
|
|
65
|
+
* - 不能包含函数、循环引用
|
|
66
|
+
* - 大对象使用引用(避免重复)
|
|
67
|
+
*/
|
|
68
|
+
export interface WorkflowState {
|
|
69
|
+
// ========== 输入参数 ==========
|
|
70
|
+
taskId: string; // 任务 ID
|
|
71
|
+
mode: ExecutionMode; // 执行模式(sync/async)
|
|
72
|
+
topic: string; // 选题
|
|
73
|
+
requirements: string; // 写作要求
|
|
74
|
+
hardConstraints: { // 硬性约束
|
|
75
|
+
minWords?: number; // 最小字数
|
|
76
|
+
maxWords?: number; // 最大字数
|
|
77
|
+
keywords?: string[]; // 必须包含的关键词
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
// ========== 流程数据(各节点累积) ==========
|
|
81
|
+
|
|
82
|
+
// 搜索阶段
|
|
83
|
+
searchQuery?: string; // 搜索关键词(由 topic 生成)
|
|
84
|
+
searchResults?: SearchResultItem[]; // 搜索结果列表
|
|
85
|
+
|
|
86
|
+
// 整理阶段
|
|
87
|
+
organizedInfo?: OrganizedInfo; // 整理后的信息
|
|
88
|
+
|
|
89
|
+
// 写作阶段
|
|
90
|
+
articleContent?: string; // 文章内容(Markdown)
|
|
91
|
+
previousContent?: string; // 上一版内容(用于重写)
|
|
92
|
+
imagePrompts?: string[]; // 配图提示词列表
|
|
93
|
+
|
|
94
|
+
// 配图阶段
|
|
95
|
+
images?: GeneratedImage[]; // 生成的配图列表
|
|
96
|
+
previousImages?: GeneratedImage[]; // 上一版配图(用于重生成)
|
|
97
|
+
|
|
98
|
+
// 质检阶段
|
|
99
|
+
textQualityReport?: QualityReport; // 文本质检报告
|
|
100
|
+
imageQualityReport?: QualityReport; // 配图质检报告
|
|
101
|
+
|
|
102
|
+
// ========== 控制数据(持久化到 DB) ==========
|
|
103
|
+
currentStep: string; // 当前步骤名称
|
|
104
|
+
textRetryCount: number; // 文本质检重试次数
|
|
105
|
+
imageRetryCount: number; // 配图质检重试次数
|
|
106
|
+
|
|
107
|
+
// ========== 元数据 ==========
|
|
108
|
+
startTime?: number; // 开始时间(时间戳)
|
|
109
|
+
endTime?: number; // 结束时间(时间戳)
|
|
110
|
+
error?: string; // 错误信息
|
|
111
|
+
|
|
112
|
+
// ========== 版本控制(乐观锁) ==========
|
|
113
|
+
version: number; // 版本号(用于数据库更新)
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* 创建初始状态
|
|
118
|
+
*/
|
|
119
|
+
export function createInitialState(params: {
|
|
120
|
+
taskId: string;
|
|
121
|
+
mode: ExecutionMode;
|
|
122
|
+
topic: string;
|
|
123
|
+
requirements: string;
|
|
124
|
+
targetAudience?: string;
|
|
125
|
+
keywords?: string[];
|
|
126
|
+
tone?: string;
|
|
127
|
+
hardConstraints?: {
|
|
128
|
+
minWords?: number;
|
|
129
|
+
maxWords?: number;
|
|
130
|
+
keywords?: string[];
|
|
131
|
+
};
|
|
132
|
+
}): WorkflowState {
|
|
133
|
+
return {
|
|
134
|
+
taskId: params.taskId,
|
|
135
|
+
mode: params.mode,
|
|
136
|
+
topic: params.topic,
|
|
137
|
+
requirements: params.requirements,
|
|
138
|
+
hardConstraints: params.hardConstraints || {},
|
|
139
|
+
|
|
140
|
+
currentStep: 'start',
|
|
141
|
+
textRetryCount: 0,
|
|
142
|
+
imageRetryCount: 0,
|
|
143
|
+
version: 1, // 初始版本号
|
|
144
|
+
|
|
145
|
+
startTime: Date.now(),
|
|
146
|
+
};
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* 状态更新辅助函数
|
|
151
|
+
*/
|
|
152
|
+
export class StateUpdater {
|
|
153
|
+
/**
|
|
154
|
+
* 创建状态更新(类型安全的 Partial)
|
|
155
|
+
*/
|
|
156
|
+
static update<T extends keyof WorkflowState>(
|
|
157
|
+
field: T,
|
|
158
|
+
value: WorkflowState[T]
|
|
159
|
+
): Partial<WorkflowState> {
|
|
160
|
+
return { [field]: value } as Partial<WorkflowState>;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* 批量更新状态
|
|
165
|
+
*/
|
|
166
|
+
static updates(updates: Partial<WorkflowState>): Partial<WorkflowState> {
|
|
167
|
+
return updates;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* 更新当前步骤
|
|
172
|
+
*/
|
|
173
|
+
static updateStep(stepName: string): Partial<WorkflowState> {
|
|
174
|
+
return {
|
|
175
|
+
currentStep: stepName,
|
|
176
|
+
};
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* 增加重试计数
|
|
181
|
+
*/
|
|
182
|
+
static incrementTextRetry(state: WorkflowState): Partial<WorkflowState> {
|
|
183
|
+
return {
|
|
184
|
+
textRetryCount: state.textRetryCount + 1,
|
|
185
|
+
};
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
static incrementImageRetry(state: WorkflowState): Partial<WorkflowState> {
|
|
189
|
+
return {
|
|
190
|
+
imageRetryCount: state.imageRetryCount + 1,
|
|
191
|
+
};
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* 标记错误
|
|
196
|
+
*/
|
|
197
|
+
static markError(error: string): Partial<WorkflowState> {
|
|
198
|
+
return {
|
|
199
|
+
error,
|
|
200
|
+
endTime: Date.now(),
|
|
201
|
+
};
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* 标记完成
|
|
206
|
+
*/
|
|
207
|
+
static markComplete(): Partial<WorkflowState> {
|
|
208
|
+
return {
|
|
209
|
+
currentStep: 'complete',
|
|
210
|
+
endTime: Date.now(),
|
|
211
|
+
};
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* 状态验证工具
|
|
217
|
+
*/
|
|
218
|
+
export class StateValidator {
|
|
219
|
+
/**
|
|
220
|
+
* 验证状态是否可序列化
|
|
221
|
+
*/
|
|
222
|
+
static validateSerializable(state: WorkflowState): boolean {
|
|
223
|
+
try {
|
|
224
|
+
JSON.stringify(state);
|
|
225
|
+
return true;
|
|
226
|
+
} catch (error) {
|
|
227
|
+
console.error('State is not serializable:', error);
|
|
228
|
+
return false;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* 验证必需字段
|
|
234
|
+
*/
|
|
235
|
+
static validateRequired(state: WorkflowState): boolean {
|
|
236
|
+
const required: Array<keyof WorkflowState> = [
|
|
237
|
+
'taskId',
|
|
238
|
+
'mode',
|
|
239
|
+
'topic',
|
|
240
|
+
'requirements',
|
|
241
|
+
'hardConstraints',
|
|
242
|
+
'currentStep',
|
|
243
|
+
'textRetryCount',
|
|
244
|
+
'imageRetryCount',
|
|
245
|
+
'version',
|
|
246
|
+
];
|
|
247
|
+
|
|
248
|
+
for (const field of required) {
|
|
249
|
+
if (state[field] === undefined || state[field] === null) {
|
|
250
|
+
console.error(`Missing required field: ${field}`);
|
|
251
|
+
return false;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
return true;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* 验证状态完整性
|
|
260
|
+
*/
|
|
261
|
+
static validate(state: WorkflowState): boolean {
|
|
262
|
+
return this.validateSerializable(state) && this.validateRequired(state);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* State 快照管理
|
|
268
|
+
*/
|
|
269
|
+
export class StateSnapshotManager {
|
|
270
|
+
/**
|
|
271
|
+
* 序列化状态
|
|
272
|
+
*/
|
|
273
|
+
static serialize(state: WorkflowState): string {
|
|
274
|
+
if (!StateValidator.validateSerializable(state)) {
|
|
275
|
+
throw new Error('State is not serializable');
|
|
276
|
+
}
|
|
277
|
+
return JSON.stringify(state);
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* 反序列化状态
|
|
282
|
+
*/
|
|
283
|
+
static deserialize(json: string): WorkflowState {
|
|
284
|
+
try {
|
|
285
|
+
const state = JSON.parse(json) as WorkflowState;
|
|
286
|
+
if (!StateValidator.validate(state)) {
|
|
287
|
+
throw new Error('Invalid state structure');
|
|
288
|
+
}
|
|
289
|
+
return state;
|
|
290
|
+
} catch (error) {
|
|
291
|
+
console.error('Failed to deserialize state:', error);
|
|
292
|
+
throw error;
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* 克隆状态(深拷贝)
|
|
298
|
+
*/
|
|
299
|
+
static clone(state: WorkflowState): WorkflowState {
|
|
300
|
+
return JSON.parse(JSON.stringify(state)) as WorkflowState;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* 创建检查点快照(只保存必要字段)
|
|
305
|
+
*/
|
|
306
|
+
static createCheckpoint(state: WorkflowState): Partial<WorkflowState> {
|
|
307
|
+
return {
|
|
308
|
+
searchResults: state.searchResults,
|
|
309
|
+
organizedInfo: state.organizedInfo,
|
|
310
|
+
articleContent: state.articleContent,
|
|
311
|
+
imagePrompts: state.imagePrompts,
|
|
312
|
+
images: state.images,
|
|
313
|
+
textQualityReport: state.textQualityReport,
|
|
314
|
+
imageQualityReport: state.imageQualityReport,
|
|
315
|
+
currentStep: state.currentStep,
|
|
316
|
+
textRetryCount: state.textRetryCount,
|
|
317
|
+
imageRetryCount: state.imageRetryCount,
|
|
318
|
+
version: state.version,
|
|
319
|
+
};
|
|
320
|
+
}
|
|
321
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Workflow 层导出
|
|
3
|
+
*
|
|
4
|
+
* 统一导出所有工作流相关的类和接口
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// State
|
|
8
|
+
export * from './State.js';
|
|
9
|
+
|
|
10
|
+
// Nodes
|
|
11
|
+
export * from './nodes/BaseNode.js';
|
|
12
|
+
export * from './nodes/index.js';
|
|
13
|
+
|
|
14
|
+
// Checkpoint Manager
|
|
15
|
+
export * from './CheckpointManager.js';
|
|
16
|
+
|
|
17
|
+
// Graph
|
|
18
|
+
export * from './ContentCreatorGraph.js';
|
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* BaseNode - 节点基类
|
|
3
|
+
*
|
|
4
|
+
* 所有工作流节点的基类,提供通用功能:
|
|
5
|
+
* - 错误处理
|
|
6
|
+
* - Token 记录
|
|
7
|
+
* - 日志记录
|
|
8
|
+
* - 状态验证
|
|
9
|
+
* - 重试支持
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
import type { WorkflowState } from '../State.js';
|
|
13
|
+
import { createLogger } from '../../../infrastructure/logging/logger.js';
|
|
14
|
+
|
|
15
|
+
const logger = createLogger('BaseNode');
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 节点执行结果
|
|
19
|
+
*/
|
|
20
|
+
export interface NodeResult {
|
|
21
|
+
success: boolean;
|
|
22
|
+
stateUpdate: Partial<WorkflowState>;
|
|
23
|
+
error?: string;
|
|
24
|
+
tokenUsage?: {
|
|
25
|
+
tokensIn: number;
|
|
26
|
+
tokensOut: number;
|
|
27
|
+
totalTokens: number;
|
|
28
|
+
};
|
|
29
|
+
duration: number; // 执行时长(毫秒)
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* 节点配置
|
|
34
|
+
*/
|
|
35
|
+
export interface NodeConfig {
|
|
36
|
+
name: string; // 节点名称
|
|
37
|
+
retryCount?: number; // 重试次数(默认 0)
|
|
38
|
+
timeout?: number; // 超时时间(毫秒,默认 60000)
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* 节点基类
|
|
43
|
+
*/
|
|
44
|
+
export abstract class BaseNode {
|
|
45
|
+
protected readonly name: string;
|
|
46
|
+
protected readonly retryCount: number;
|
|
47
|
+
protected readonly timeout: number;
|
|
48
|
+
protected readonly logger;
|
|
49
|
+
|
|
50
|
+
constructor(config: NodeConfig) {
|
|
51
|
+
this.name = config.name;
|
|
52
|
+
this.retryCount = config.retryCount ?? 0;
|
|
53
|
+
this.timeout = config.timeout ?? 60000; // 60 秒默认超时
|
|
54
|
+
this.logger = createLogger(`Node:${this.name}`);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* 执行节点(带重试和错误处理)
|
|
59
|
+
*
|
|
60
|
+
* @param state - 当前工作流状态
|
|
61
|
+
* @returns 节点执行结果
|
|
62
|
+
*/
|
|
63
|
+
async execute(state: WorkflowState): Promise<NodeResult> {
|
|
64
|
+
const startTime = Date.now();
|
|
65
|
+
const attempt = this.getAttemptCount(state);
|
|
66
|
+
|
|
67
|
+
this.logger.info('Node execution started', {
|
|
68
|
+
nodeId: this.name,
|
|
69
|
+
taskId: state.taskId,
|
|
70
|
+
attempt: attempt + 1,
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
try {
|
|
74
|
+
// 验证状态
|
|
75
|
+
this.validateState(state);
|
|
76
|
+
|
|
77
|
+
// 执行节点逻辑(带超时)
|
|
78
|
+
const stateUpdate = await this.executeWithTimeout(state);
|
|
79
|
+
|
|
80
|
+
// 计算执行时长
|
|
81
|
+
const duration = Date.now() - startTime;
|
|
82
|
+
|
|
83
|
+
// 记录成功日志
|
|
84
|
+
this.logger.info('Node execution completed', {
|
|
85
|
+
nodeId: this.name,
|
|
86
|
+
taskId: state.taskId,
|
|
87
|
+
duration,
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
// 返回结果
|
|
91
|
+
return {
|
|
92
|
+
success: true,
|
|
93
|
+
stateUpdate: {
|
|
94
|
+
...stateUpdate,
|
|
95
|
+
currentStep: this.name,
|
|
96
|
+
},
|
|
97
|
+
duration,
|
|
98
|
+
};
|
|
99
|
+
} catch (error) {
|
|
100
|
+
const duration = Date.now() - startTime;
|
|
101
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
102
|
+
|
|
103
|
+
// 记录错误日志
|
|
104
|
+
this.logger.error('Node execution failed', {
|
|
105
|
+
nodeId: this.name,
|
|
106
|
+
taskId: state.taskId,
|
|
107
|
+
error: errorMessage,
|
|
108
|
+
duration,
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
// 返回错误结果
|
|
112
|
+
return {
|
|
113
|
+
success: false,
|
|
114
|
+
stateUpdate: {
|
|
115
|
+
error: errorMessage,
|
|
116
|
+
},
|
|
117
|
+
error: errorMessage,
|
|
118
|
+
duration,
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* 抽象方法:节点具体逻辑(由子类实现)
|
|
125
|
+
*
|
|
126
|
+
* @param state - 当前工作流状态
|
|
127
|
+
* @returns 状态更新(Partial<WorkflowState>)
|
|
128
|
+
*/
|
|
129
|
+
protected abstract executeLogic(state: WorkflowState): Promise<Partial<WorkflowState>>;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* 验证状态(可选,由子类重写)
|
|
133
|
+
*
|
|
134
|
+
* @param state - 当前工作流状态
|
|
135
|
+
* @throws Error 如果状态无效
|
|
136
|
+
*/
|
|
137
|
+
protected validateState(state: WorkflowState): void {
|
|
138
|
+
// 默认验证:检查是否有错误
|
|
139
|
+
if (state.error) {
|
|
140
|
+
throw new Error(`Previous error: ${state.error}`);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* 获取当前尝试次数(可选,由子类重写)
|
|
146
|
+
*
|
|
147
|
+
* @param state - 当前工作流状态
|
|
148
|
+
* @returns 尝试次数
|
|
149
|
+
*/
|
|
150
|
+
protected getAttemptCount(_state: WorkflowState): number {
|
|
151
|
+
// 默认:返回 0
|
|
152
|
+
// 子类可以根据 state 中的重试计数器返回实际值
|
|
153
|
+
return 0;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* 执行节点逻辑(带超时控制)
|
|
158
|
+
*
|
|
159
|
+
* @param state - 当前工作流状态
|
|
160
|
+
* @returns 状态更新
|
|
161
|
+
*/
|
|
162
|
+
private async executeWithTimeout(state: WorkflowState): Promise<Partial<WorkflowState>> {
|
|
163
|
+
return Promise.race([
|
|
164
|
+
this.executeLogic(state),
|
|
165
|
+
this.createTimeoutPromise(),
|
|
166
|
+
]);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* 创建超时 Promise
|
|
171
|
+
*/
|
|
172
|
+
private createTimeoutPromise(): Promise<never> {
|
|
173
|
+
return new Promise((_, reject) => {
|
|
174
|
+
setTimeout(() => {
|
|
175
|
+
reject(new Error(`Node timeout: ${this.name} exceeded ${this.timeout}ms`));
|
|
176
|
+
}, this.timeout);
|
|
177
|
+
});
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* 记录 LLM Token 使用(可选,由子类调用)
|
|
182
|
+
*
|
|
183
|
+
* @param state - 工作流状态
|
|
184
|
+
* @param tokensIn - 输入 Token 数量
|
|
185
|
+
* @param tokensOut - 输出 Token 数量
|
|
186
|
+
*/
|
|
187
|
+
protected recordTokenUsage(
|
|
188
|
+
state: WorkflowState,
|
|
189
|
+
tokensIn: number,
|
|
190
|
+
tokensOut: number
|
|
191
|
+
): void {
|
|
192
|
+
this.logger.debug('Token usage recorded', {
|
|
193
|
+
nodeId: this.name,
|
|
194
|
+
taskId: state.taskId,
|
|
195
|
+
tokensIn,
|
|
196
|
+
tokensOut,
|
|
197
|
+
totalTokens: tokensIn + tokensOut,
|
|
198
|
+
});
|
|
199
|
+
|
|
200
|
+
// TODO: 保存到数据库(后续实现)
|
|
201
|
+
// await tokenUsageRepo.create({
|
|
202
|
+
// taskId: state.taskId,
|
|
203
|
+
// traceId: generateTraceId(),
|
|
204
|
+
// stepName: this.name,
|
|
205
|
+
// apiName: 'deepseek',
|
|
206
|
+
// modelName: 'deepseek-chat',
|
|
207
|
+
// tokensIn,
|
|
208
|
+
// tokensOut,
|
|
209
|
+
// totalTokens: tokensIn + tokensOut,
|
|
210
|
+
// ...
|
|
211
|
+
// });
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* 创建状态更新辅助函数
|
|
216
|
+
*/
|
|
217
|
+
protected updateState<T extends keyof WorkflowState>(
|
|
218
|
+
field: T,
|
|
219
|
+
value: WorkflowState[T]
|
|
220
|
+
): Partial<WorkflowState> {
|
|
221
|
+
return { [field]: value } as Partial<WorkflowState>;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* 转换为 LangGraph 节点
|
|
226
|
+
*
|
|
227
|
+
* @returns LangGraph 节点函数
|
|
228
|
+
*/
|
|
229
|
+
toLangGraphNode(): (state: WorkflowState) => Promise<Partial<WorkflowState>> {
|
|
230
|
+
return async (state: WorkflowState) => {
|
|
231
|
+
logger.debug(`Node ${this.name} received state`, {
|
|
232
|
+
taskId: state.taskId,
|
|
233
|
+
topic: state.topic,
|
|
234
|
+
hasTopic: !!state.topic,
|
|
235
|
+
stateKeys: Object.keys(state),
|
|
236
|
+
});
|
|
237
|
+
|
|
238
|
+
const result = await this.execute(state);
|
|
239
|
+
|
|
240
|
+
if (!result.success) {
|
|
241
|
+
throw new Error(result.error || 'Node execution failed');
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
return result.stateUpdate;
|
|
245
|
+
};
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* 节点执行上下文
|
|
251
|
+
*
|
|
252
|
+
* 提供额外的工具和方法供节点使用
|
|
253
|
+
*/
|
|
254
|
+
export class NodeContext {
|
|
255
|
+
protected readonly logger;
|
|
256
|
+
|
|
257
|
+
constructor(nodeName: string) {
|
|
258
|
+
this.logger = createLogger(`Node:${nodeName}`);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* 生成 Trace ID(用于链路追踪)
|
|
263
|
+
*/
|
|
264
|
+
generateTraceId(): string {
|
|
265
|
+
return `${Date.now()}-${Math.random().toString(36).substring(2, 15)}`;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* 延迟执行(毫秒)
|
|
270
|
+
*/
|
|
271
|
+
async delay(ms: number): Promise<void> {
|
|
272
|
+
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* 计算文本的 Token 数量(估算)
|
|
277
|
+
*/
|
|
278
|
+
estimateTokens(text: string): number {
|
|
279
|
+
// 粗略估算:英文约 4 字符/token,中文约 1.5 字符/token
|
|
280
|
+
const chineseChars = (text.match(/[\u4e00-\u9fa5]/g) || []).length;
|
|
281
|
+
const englishChars = text.length - chineseChars;
|
|
282
|
+
|
|
283
|
+
return Math.ceil(chineseChars / 1.5 + englishChars / 4);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* 截断文本到指定 Token 数量
|
|
288
|
+
*/
|
|
289
|
+
truncateToTokens(text: string, maxTokens: number): string {
|
|
290
|
+
const estimatedTokens = this.estimateTokens(text);
|
|
291
|
+
|
|
292
|
+
if (estimatedTokens <= maxTokens) {
|
|
293
|
+
return text;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
// 粗略截断:按比例缩短
|
|
297
|
+
const ratio = maxTokens / estimatedTokens;
|
|
298
|
+
const truncatedLength = Math.floor(text.length * ratio);
|
|
299
|
+
return text.substring(0, truncatedLength);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* 安全地解析 JSON
|
|
304
|
+
*/
|
|
305
|
+
safeParseJSON<T>(json: string, fallback: T): T {
|
|
306
|
+
try {
|
|
307
|
+
return JSON.parse(json) as T;
|
|
308
|
+
} catch (error) {
|
|
309
|
+
this.logger.warn('Failed to parse JSON, using fallback', {
|
|
310
|
+
error: error instanceof Error ? error.message : String(error),
|
|
311
|
+
});
|
|
312
|
+
return fallback;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* 格式化错误消息
|
|
318
|
+
*/
|
|
319
|
+
formatError(error: unknown): string {
|
|
320
|
+
if (error instanceof Error) {
|
|
321
|
+
return error.message;
|
|
322
|
+
}
|
|
323
|
+
return String(error);
|
|
324
|
+
}
|
|
325
|
+
}
|