@goscribe/server 1.3.3 → 1.5.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/.env.example +12 -0
- package/.vscode/settings.json +3 -0
- package/REFACTOR_NOTES.md +60 -0
- package/TESTING_PROMPT.md +225 -0
- package/dist/controllers/admin.controller.d.ts +715 -0
- package/dist/controllers/admin.controller.js +9 -0
- package/dist/controllers/annotations.controller.d.ts +439 -0
- package/dist/controllers/annotations.controller.js +9 -0
- package/dist/controllers/app-router.controller.d.ts +3011 -0
- package/dist/controllers/app-router.controller.js +38 -0
- package/dist/controllers/app-router.controller.test.d.ts +1 -0
- package/dist/controllers/app-router.controller.test.js +36 -0
- package/dist/controllers/auth.controller.d.ts +323 -0
- package/dist/controllers/auth.controller.js +9 -0
- package/dist/controllers/base.controller.d.ts +4 -0
- package/dist/controllers/base.controller.js +5 -0
- package/dist/controllers/chat.controller.d.ts +341 -0
- package/dist/controllers/chat.controller.js +9 -0
- package/dist/controllers/copilot.controller.d.ts +397 -0
- package/dist/controllers/copilot.controller.js +9 -0
- package/dist/controllers/flashcards.controller.d.ts +651 -0
- package/dist/controllers/flashcards.controller.js +9 -0
- package/dist/controllers/members.controller.d.ts +339 -0
- package/dist/controllers/members.controller.js +9 -0
- package/dist/controllers/notifications.controller.d.ts +199 -0
- package/dist/controllers/notifications.controller.js +9 -0
- package/dist/controllers/payment.controller.d.ts +181 -0
- package/dist/controllers/payment.controller.js +9 -0
- package/dist/controllers/podcast.controller.d.ts +575 -0
- package/dist/controllers/podcast.controller.js +9 -0
- package/dist/controllers/router-module.controller.d.ts +5 -0
- package/dist/controllers/router-module.controller.js +6 -0
- package/dist/controllers/studyguide.controller.d.ts +73 -0
- package/dist/controllers/studyguide.controller.js +9 -0
- package/dist/controllers/worksheets.controller.d.ts +829 -0
- package/dist/controllers/worksheets.controller.js +9 -0
- package/dist/controllers/workspace.controller.d.ts +1207 -0
- package/dist/controllers/workspace.controller.js +9 -0
- package/dist/lib/activity_human_description.test.js +16 -15
- package/dist/lib/activity_log_service.test.js +28 -23
- package/dist/lib/ai/config.d.ts +20 -0
- package/dist/lib/ai/config.js +31 -0
- package/dist/lib/ai/embedding-client.d.ts +8 -0
- package/dist/lib/ai/embedding-client.js +30 -0
- package/dist/lib/ai/index.d.ts +47 -0
- package/dist/lib/ai/index.js +28 -0
- package/dist/lib/ai/inference-backend/client.d.ts +28 -0
- package/dist/lib/ai/inference-backend/client.js +301 -0
- package/dist/lib/ai/inference-backend/mocks.d.ts +12 -0
- package/dist/lib/ai/inference-backend/mocks.js +133 -0
- package/dist/lib/ai/inference-backend/types.d.ts +44 -0
- package/dist/lib/ai/inference-backend/types.js +1 -0
- package/dist/lib/ai/json-parse.d.ts +2 -0
- package/dist/lib/ai/json-parse.js +34 -0
- package/dist/lib/ai/llm-client.d.ts +6 -0
- package/dist/lib/ai/llm-client.js +19 -0
- package/dist/lib/ai/mock.d.ts +2 -0
- package/dist/lib/ai/mock.js +10 -0
- package/dist/lib/ai/types.d.ts +9 -0
- package/dist/lib/ai/types.js +1 -0
- package/dist/lib/chunking.d.ts +19 -0
- package/dist/lib/chunking.js +47 -0
- package/dist/lib/curated-kb-seed.d.ts +12 -0
- package/dist/lib/curated-kb-seed.js +155 -0
- package/dist/lib/email.js +67 -108
- package/dist/lib/embeddings.d.ts +2 -0
- package/dist/lib/embeddings.js +1 -0
- package/dist/lib/ensure-curated-kb-catalog.d.ts +6 -0
- package/dist/lib/ensure-curated-kb-catalog.js +53 -0
- package/dist/lib/env.d.ts +1 -5
- package/dist/lib/env.js +2 -7
- package/dist/lib/inference.d.ts +1 -8
- package/dist/lib/inference.js +1 -19
- package/dist/lib/kb-meta.d.ts +8 -0
- package/dist/lib/kb-meta.js +77 -0
- package/dist/lib/note-text.d.ts +1 -0
- package/dist/lib/note-text.js +47 -0
- package/dist/lib/notification-service.test.js +37 -36
- package/dist/lib/pdf.d.ts +11 -0
- package/dist/lib/pdf.js +11 -0
- package/dist/lib/usage_service.d.ts +2 -1
- package/dist/lib/usage_service.js +30 -12
- package/dist/lib/worksheet-generation.js +4 -4
- package/dist/lib/worksheet-generation.test.js +32 -17
- package/dist/lib/workspace-kb.d.ts +5 -0
- package/dist/lib/workspace-kb.js +7 -0
- package/dist/models/controller-context.model.d.ts +8 -0
- package/dist/models/controller-context.model.js +1 -0
- package/dist/repositories/artifact.repository.d.ts +60 -0
- package/dist/repositories/artifact.repository.js +40 -0
- package/dist/repositories/base.repository.d.ts +14 -0
- package/dist/repositories/base.repository.js +14 -0
- package/dist/repositories/invitation.repository.d.ts +94 -0
- package/dist/repositories/invitation.repository.js +44 -0
- package/dist/repositories/notification.repository.d.ts +72 -0
- package/dist/repositories/notification.repository.js +44 -0
- package/dist/repositories/router-module.repository.d.ts +10 -0
- package/dist/repositories/router-module.repository.js +14 -0
- package/dist/repositories/user.repository.d.ts +74 -0
- package/dist/repositories/user.repository.js +37 -0
- package/dist/repositories/workspace-member.repository.d.ts +31 -0
- package/dist/repositories/workspace-member.repository.js +31 -0
- package/dist/repositories/workspace.repository.d.ts +97 -0
- package/dist/repositories/workspace.repository.js +79 -0
- package/dist/routers/_app.d.ts +528 -33
- package/dist/routers/_app.js +4 -0
- package/dist/routers/admin.d.ts +0 -4
- package/dist/routers/admin.js +21 -549
- package/dist/routers/annotations.js +12 -170
- package/dist/routers/artifactVersions.d.ts +65 -0
- package/dist/routers/artifactVersions.js +14 -0
- package/dist/routers/auth.d.ts +0 -6
- package/dist/routers/auth.js +36 -421
- package/dist/routers/chat.js +15 -229
- package/dist/routers/copilot.d.ts +14 -13
- package/dist/routers/copilot.js +13 -532
- package/dist/routers/flashcards.d.ts +5 -5
- package/dist/routers/flashcards.js +23 -349
- package/dist/routers/knowledgeBase.d.ts +421 -0
- package/dist/routers/knowledgeBase.js +118 -0
- package/dist/routers/members.d.ts +0 -41
- package/dist/routers/members.js +22 -710
- package/dist/routers/notes.d.ts +94 -0
- package/dist/routers/notes.js +37 -0
- package/dist/routers/notifications.js +7 -109
- package/dist/routers/payment.d.ts +3 -2
- package/dist/routers/payment.js +11 -393
- package/dist/routers/podcast.d.ts +1 -1
- package/dist/routers/podcast.js +11 -784
- package/dist/routers/studyguide.js +3 -129
- package/dist/routers/worksheets.d.ts +29 -14
- package/dist/routers/worksheets.js +49 -628
- package/dist/routers/workspace.d.ts +0 -4
- package/dist/routers/workspace.js +28 -922
- package/dist/scripts/purge-deleted-users.js +2 -2
- package/dist/server.js +10 -3
- package/dist/services/activity/activity-human-description.service.d.ts +13 -0
- package/dist/services/activity/activity-human-description.service.js +221 -0
- package/dist/services/activity/activity-human-description.service.test.d.ts +1 -0
- package/dist/services/activity/activity-human-description.service.test.js +16 -0
- package/dist/services/activity/activity-log.service.d.ts +87 -0
- package/dist/services/activity/activity-log.service.js +276 -0
- package/dist/services/activity/activity-log.service.test.d.ts +1 -0
- package/dist/services/activity/activity-log.service.test.js +27 -0
- package/dist/services/activity-human-description.service.d.ts +13 -0
- package/dist/services/activity-human-description.service.js +221 -0
- package/dist/services/activity-human-description.service.test.d.ts +1 -0
- package/dist/services/activity-human-description.service.test.js +16 -0
- package/dist/services/activity-log.service.d.ts +87 -0
- package/dist/services/activity-log.service.js +276 -0
- package/dist/services/activity-log.service.test.d.ts +1 -0
- package/dist/services/activity-log.service.test.js +27 -0
- package/dist/services/admin/admin.service.d.ts +270 -0
- package/dist/services/admin/admin.service.js +476 -0
- package/dist/services/admin.service.d.ts +270 -0
- package/dist/services/admin.service.js +476 -0
- package/dist/services/ai/ai-session.service.d.ts +5 -0
- package/dist/services/ai/ai-session.service.js +4 -0
- package/dist/services/ai-session.service.d.ts +60 -0
- package/dist/services/ai-session.service.js +561 -0
- package/dist/services/annotation.service.d.ts +177 -0
- package/dist/services/annotation.service.js +154 -0
- package/dist/services/artifact-notification.service.d.ts +14 -0
- package/dist/services/artifact-notification.service.js +20 -0
- package/dist/services/artifact-version.service.d.ts +38 -0
- package/dist/services/artifact-version.service.js +129 -0
- package/dist/services/artifacts/annotation.service.d.ts +177 -0
- package/dist/services/artifacts/annotation.service.js +154 -0
- package/dist/services/artifacts/artifact-version.service.d.ts +38 -0
- package/dist/services/artifacts/artifact-version.service.js +129 -0
- package/dist/services/artifacts/chat.service.d.ts +127 -0
- package/dist/services/artifacts/chat.service.js +182 -0
- package/dist/services/artifacts/study-guide.service.d.ts +18 -0
- package/dist/services/artifacts/study-guide.service.js +65 -0
- package/dist/services/auth/auth.service.d.ts +94 -0
- package/dist/services/auth/auth.service.js +368 -0
- package/dist/services/auth.service.d.ts +94 -0
- package/dist/services/auth.service.js +368 -0
- package/dist/services/base.service.d.ts +14 -0
- package/dist/services/base.service.js +14 -0
- package/dist/services/billing/payment.service.d.ts +55 -0
- package/dist/services/billing/payment.service.js +368 -0
- package/dist/services/billing/subscription.service.d.ts +37 -0
- package/dist/services/billing/subscription.service.js +654 -0
- package/dist/services/billing/usage.service.d.ts +27 -0
- package/dist/services/billing/usage.service.js +77 -0
- package/dist/services/chat.service.d.ts +127 -0
- package/dist/services/chat.service.js +182 -0
- package/dist/services/content/copilot.service.d.ts +113 -0
- package/dist/services/content/copilot.service.js +453 -0
- package/dist/services/content/flashcard-progress.service.d.ts +159 -0
- package/dist/services/content/flashcard-progress.service.js +432 -0
- package/dist/services/content/flashcard.service.d.ts +140 -0
- package/dist/services/content/flashcard.service.js +326 -0
- package/dist/services/content/media-analysis.service.d.ts +23 -0
- package/dist/services/content/media-analysis.service.js +404 -0
- package/dist/services/content/podcast.service.d.ts +267 -0
- package/dist/services/content/podcast.service.js +653 -0
- package/dist/services/content/worksheet-content.service.d.ts +37 -0
- package/dist/services/content/worksheet-content.service.js +84 -0
- package/dist/services/content/worksheet-content.service.test.d.ts +1 -0
- package/dist/services/content/worksheet-content.service.test.js +69 -0
- package/dist/services/content/worksheet-generation.service.d.ts +91 -0
- package/dist/services/content/worksheet-generation.service.js +95 -0
- package/dist/services/content/worksheet-generation.service.test.d.ts +1 -0
- package/dist/services/content/worksheet-generation.service.test.js +20 -0
- package/dist/services/content/worksheet.service.d.ts +347 -0
- package/dist/services/content/worksheet.service.js +599 -0
- package/dist/services/copilot.service.d.ts +116 -0
- package/dist/services/copilot.service.js +447 -0
- package/dist/services/flashcard-progress.service.d.ts +2 -2
- package/dist/services/flashcard-progress.service.js +3 -2
- package/dist/services/flashcard.service.d.ts +140 -0
- package/dist/services/flashcard.service.js +325 -0
- package/dist/services/invitation.service.d.ts +66 -0
- package/dist/services/invitation.service.js +348 -0
- package/dist/services/knowledge/knowledge-base.service.d.ts +316 -0
- package/dist/services/knowledge/knowledge-base.service.js +544 -0
- package/dist/services/knowledge-base.service.d.ts +316 -0
- package/dist/services/knowledge-base.service.js +536 -0
- package/dist/services/media-analysis.service.d.ts +23 -0
- package/dist/services/media-analysis.service.js +384 -0
- package/dist/services/member.service.d.ts +36 -0
- package/dist/services/member.service.js +193 -0
- package/dist/services/members/invitation.service.d.ts +66 -0
- package/dist/services/members/invitation.service.js +348 -0
- package/dist/services/members/member.service.d.ts +36 -0
- package/dist/services/members/member.service.js +193 -0
- package/dist/services/note.service.d.ts +55 -0
- package/dist/services/note.service.js +111 -0
- package/dist/services/notification.service.d.ts +214 -0
- package/dist/services/notification.service.js +550 -0
- package/dist/services/notification.service.test.d.ts +1 -0
- package/dist/services/notification.service.test.js +87 -0
- package/dist/services/notifications/notification.service.d.ts +214 -0
- package/dist/services/notifications/notification.service.js +550 -0
- package/dist/services/notifications/notification.service.test.d.ts +1 -0
- package/dist/services/notifications/notification.service.test.js +87 -0
- package/dist/services/payment.service.d.ts +55 -0
- package/dist/services/payment.service.js +368 -0
- package/dist/services/podcast.service.d.ts +267 -0
- package/dist/services/podcast.service.js +654 -0
- package/dist/services/router-module.service.d.ts +7 -0
- package/dist/services/router-module.service.js +10 -0
- package/dist/services/study-guide.service.d.ts +18 -0
- package/dist/services/study-guide.service.js +65 -0
- package/dist/services/subscription.service.d.ts +37 -0
- package/dist/services/subscription.service.js +654 -0
- package/dist/services/usage-limit-policy.service.d.ts +12 -0
- package/dist/services/usage-limit-policy.service.js +22 -0
- package/dist/services/usage-limit-policy.service.test.d.ts +1 -0
- package/dist/services/usage-limit-policy.service.test.js +46 -0
- package/dist/services/usage.service.d.ts +27 -0
- package/dist/services/usage.service.js +77 -0
- package/dist/services/worksheet-content.service.d.ts +42 -0
- package/dist/services/worksheet-content.service.js +84 -0
- package/dist/services/worksheet-content.service.test.d.ts +1 -0
- package/dist/services/worksheet-content.service.test.js +69 -0
- package/dist/services/worksheet-generation.service.d.ts +91 -0
- package/dist/services/worksheet-generation.service.js +95 -0
- package/dist/services/worksheet-generation.service.test.d.ts +1 -0
- package/dist/services/worksheet-generation.service.test.js +20 -0
- package/dist/services/worksheet.service.d.ts +385 -0
- package/dist/services/worksheet.service.js +596 -0
- package/dist/services/workspace/workspace-analytics.service.d.ts +24 -0
- package/dist/services/workspace/workspace-analytics.service.js +95 -0
- package/dist/services/workspace/workspace-kb.service.d.ts +40 -0
- package/dist/services/workspace/workspace-kb.service.js +184 -0
- package/dist/services/workspace/workspace.service.d.ts +307 -0
- package/dist/services/workspace/workspace.service.js +394 -0
- package/dist/services/workspace-analytics.service.d.ts +24 -0
- package/dist/services/workspace-analytics.service.js +95 -0
- package/dist/services/workspace-kb.service.d.ts +40 -0
- package/dist/services/workspace-kb.service.js +184 -0
- package/dist/services/workspace-progress.service.d.ts +27 -0
- package/dist/services/workspace-progress.service.js +56 -0
- package/dist/services/workspace-progress.service.test.d.ts +1 -0
- package/dist/services/workspace-progress.service.test.js +49 -0
- package/dist/services/workspace.service.d.ts +307 -0
- package/dist/services/workspace.service.js +390 -0
- package/dist/trpc.js +2 -2
- package/package.json +5 -6
- package/prisma/migrations/20260509000001_add_knowledge_base/migration.sql +99 -0
- package/prisma/migrations/20260509000002_curate_knowledge_base/migration.sql +52 -0
- package/prisma/migrations/20260522000000_add_notes/migration.sql +27 -0
- package/prisma/migrations/20260524000000_remove_notes/migration.sql +3 -0
- package/prisma/schema.prisma +150 -48
- package/prisma/seed.mjs +67 -0
- package/scripts/debug/README.md +4 -0
- package/src/README.md +63 -0
- package/src/lib/ai/config.ts +34 -0
- package/src/lib/ai/embedding-client.ts +47 -0
- package/src/lib/ai/index.ts +62 -0
- package/src/lib/ai/inference-backend/client.ts +479 -0
- package/src/lib/ai/inference-backend/mocks.ts +171 -0
- package/src/lib/ai/inference-backend/types.ts +50 -0
- package/src/lib/ai/json-parse.ts +35 -0
- package/src/lib/ai/llm-client.ts +31 -0
- package/src/lib/ai/mock.ts +12 -0
- package/src/lib/ai/types.ts +11 -0
- package/src/lib/chunking.ts +81 -0
- package/src/lib/curated-kb-seed.ts +164 -0
- package/src/lib/email.ts +77 -115
- package/src/lib/embeddings.ts +9 -0
- package/src/lib/ensure-curated-kb-catalog.ts +60 -0
- package/src/lib/env.ts +2 -7
- package/src/lib/inference.ts +1 -21
- package/src/lib/kb-meta.ts +81 -0
- package/src/lib/pdf.ts +23 -0
- package/src/lib/workspace-kb.ts +7 -0
- package/src/repositories/artifact.repository.ts +55 -0
- package/src/repositories/base.repository.ts +19 -0
- package/src/repositories/invitation.repository.ts +53 -0
- package/src/repositories/notification.repository.ts +53 -0
- package/src/repositories/user.repository.ts +44 -0
- package/src/repositories/workspace-member.repository.ts +38 -0
- package/src/repositories/workspace.repository.ts +89 -0
- package/src/routers/_app.ts +4 -0
- package/src/routers/admin.ts +124 -692
- package/src/routers/annotations.ts +25 -203
- package/src/routers/artifactVersions.ts +32 -0
- package/src/routers/auth.ts +81 -519
- package/src/routers/chat.ts +42 -245
- package/src/routers/copilot.ts +41 -666
- package/src/routers/flashcards.ts +108 -404
- package/src/routers/knowledgeBase.ts +216 -0
- package/src/routers/members.ts +60 -782
- package/src/routers/notifications.ts +15 -117
- package/src/routers/payment.ts +37 -446
- package/src/routers/podcast.ts +36 -898
- package/src/routers/studyguide.ts +5 -144
- package/src/routers/worksheets.ts +171 -735
- package/src/routers/workspace.ts +138 -1109
- package/src/scripts/purge-deleted-users.ts +2 -2
- package/src/server.ts +10 -3
- package/src/{lib/activity_human_description.test.ts → services/activity/activity-human-description.service.test.ts} +1 -1
- package/src/{lib/activity_log_service.test.ts → services/activity/activity-log.service.test.ts} +1 -1
- package/src/{lib/activity_log_service.ts → services/activity/activity-log.service.ts} +2 -2
- package/src/services/admin/admin.service.ts +612 -0
- package/src/services/ai/ai-session.service.ts +5 -0
- package/src/services/artifacts/annotation.service.ts +189 -0
- package/src/services/artifacts/artifact-version.service.ts +151 -0
- package/src/services/artifacts/chat.service.ts +197 -0
- package/src/services/artifacts/study-guide.service.ts +72 -0
- package/src/services/auth/auth.service.ts +473 -0
- package/src/services/base.service.ts +19 -0
- package/src/services/billing/payment.service.ts +436 -0
- package/src/{lib/subscription_service.ts → services/billing/subscription.service.ts} +5 -5
- package/src/{lib/usage_service.ts → services/billing/usage.service.ts} +32 -12
- package/src/services/content/copilot.service.ts +596 -0
- package/src/services/{flashcard-progress.service.ts → content/flashcard-progress.service.ts} +6 -3
- package/src/services/content/flashcard.service.ts +394 -0
- package/src/services/content/media-analysis.service.ts +556 -0
- package/src/services/content/podcast.service.ts +777 -0
- package/src/services/content/worksheet-content.service.test.ts +83 -0
- package/src/services/content/worksheet-content.service.ts +117 -0
- package/src/{lib/worksheet-generation.test.ts → services/content/worksheet-generation.service.test.ts} +1 -1
- package/src/services/content/worksheet.service.ts +751 -0
- package/src/services/knowledge/knowledge-base.service.ts +705 -0
- package/src/services/members/invitation.service.ts +427 -0
- package/src/services/members/member.service.ts +241 -0
- package/src/{lib/notification-service.test.ts → services/notifications/notification.service.test.ts} +2 -2
- package/src/{lib/notification-service.ts → services/notifications/notification.service.ts} +102 -1
- package/src/services/workspace/workspace-analytics.service.ts +107 -0
- package/src/services/workspace/workspace-kb.service.ts +273 -0
- package/src/services/workspace/workspace.service.ts +481 -0
- package/src/trpc.ts +2 -2
- package/src/lib/ai-session.ts +0 -704
- package/src/lib/workspace-access.ts +0 -13
- /package/{check-difficulty.cjs → scripts/debug/check-difficulty.cjs} +0 -0
- /package/{check-questions.cjs → scripts/debug/check-questions.cjs} +0 -0
- /package/{db-summary.cjs → scripts/debug/db-summary.cjs} +0 -0
- /package/{mcq-test.cjs → scripts/debug/mcq-test.cjs} +0 -0
- /package/{test-generate.js → scripts/debug/test-generate.js} +0 -0
- /package/{test-ratio.cjs → scripts/debug/test-ratio.cjs} +0 -0
- /package/{zod-test.cjs → scripts/debug/zod-test.cjs} +0 -0
- /package/src/{lib/activity_human_description.ts → services/activity/activity-human-description.service.ts} +0 -0
- /package/src/{lib/worksheet-generation.ts → services/content/worksheet-generation.service.ts} +0 -0
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
import { TRPCError } from '@trpc/server';
|
|
2
|
+
import { getInferenceBackendUploadUrl, aiConfig, tryGetInferenceBackendUploadUrl } from '../config.js';
|
|
3
|
+
import { isAiMockMode, mockDelay } from '../mock.js';
|
|
4
|
+
import { parseJsonField } from '../json-parse.js';
|
|
5
|
+
import { withRetry } from '../../retry.js';
|
|
6
|
+
import { logger } from '../../logger.js';
|
|
7
|
+
import type { MarkScheme, UserMarkScheme } from '../../../types/index.js';
|
|
8
|
+
import {
|
|
9
|
+
mockFlashcards,
|
|
10
|
+
mockPodcastAudio,
|
|
11
|
+
mockPodcastStructure,
|
|
12
|
+
mockProcessFile,
|
|
13
|
+
mockSegmentSummaryValidation,
|
|
14
|
+
mockStudyGuide,
|
|
15
|
+
mockStudyGuideSegmentation,
|
|
16
|
+
mockWorksheet,
|
|
17
|
+
} from './mocks.js';
|
|
18
|
+
import type {
|
|
19
|
+
AISession,
|
|
20
|
+
PodcastSpeaker,
|
|
21
|
+
ProcessFileResult,
|
|
22
|
+
StudyGuideSegment,
|
|
23
|
+
WorksheetGenerationOptions,
|
|
24
|
+
BackendGenerationOptions,
|
|
25
|
+
} from './types.js';
|
|
26
|
+
|
|
27
|
+
interface PostCommandOptions {
|
|
28
|
+
label: string;
|
|
29
|
+
timeoutMs?: number;
|
|
30
|
+
retries?: number;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export class InferenceBackendClient {
|
|
34
|
+
private sessions = new Map<string, AISession>();
|
|
35
|
+
|
|
36
|
+
private get uploadUrl(): string {
|
|
37
|
+
return getInferenceBackendUploadUrl();
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
private async postCommand<T>(
|
|
41
|
+
formData: FormData,
|
|
42
|
+
options: PostCommandOptions,
|
|
43
|
+
): Promise<T> {
|
|
44
|
+
const { label, timeoutMs = 300_000, retries = 3 } = options;
|
|
45
|
+
|
|
46
|
+
return withRetry(
|
|
47
|
+
async () => {
|
|
48
|
+
const controller = new AbortController();
|
|
49
|
+
const timeoutId = setTimeout(() => controller.abort(), timeoutMs);
|
|
50
|
+
try {
|
|
51
|
+
const response = await fetch(this.uploadUrl, {
|
|
52
|
+
method: 'POST',
|
|
53
|
+
body: formData,
|
|
54
|
+
signal: controller.signal,
|
|
55
|
+
});
|
|
56
|
+
clearTimeout(timeoutId);
|
|
57
|
+
|
|
58
|
+
if (!response.ok) {
|
|
59
|
+
const errorText = await response.text().catch(() => '');
|
|
60
|
+
throw new Error(
|
|
61
|
+
`AI backend error (${response.status}): ${errorText || response.statusText}`,
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
return (await response.json()) as T;
|
|
66
|
+
} catch (error) {
|
|
67
|
+
clearTimeout(timeoutId);
|
|
68
|
+
throw error;
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
{ maxRetries: retries, timeoutMs, label },
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
private buildForm(command: string, fields: Record<string, string> = {}): FormData {
|
|
76
|
+
const formData = new FormData();
|
|
77
|
+
formData.append('command', command);
|
|
78
|
+
for (const [key, value] of Object.entries(fields)) {
|
|
79
|
+
formData.append(key, value);
|
|
80
|
+
}
|
|
81
|
+
return formData;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
private withRag(
|
|
85
|
+
fields: Record<string, string>,
|
|
86
|
+
opts?: BackendGenerationOptions,
|
|
87
|
+
): Record<string, string> {
|
|
88
|
+
if (opts?.ragContext?.trim()) {
|
|
89
|
+
return { ...fields, rag_context: opts.ragContext.trim() };
|
|
90
|
+
}
|
|
91
|
+
return fields;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
async initSession(workspaceId: string, user: string): Promise<AISession> {
|
|
95
|
+
await mockDelay();
|
|
96
|
+
const sessionId = workspaceId;
|
|
97
|
+
|
|
98
|
+
if (isAiMockMode()) {
|
|
99
|
+
logger.info(`[ai] mock initSession workspace=${workspaceId}`);
|
|
100
|
+
const session: AISession = {
|
|
101
|
+
id: sessionId,
|
|
102
|
+
workspaceId,
|
|
103
|
+
status: 'initialized',
|
|
104
|
+
files: [],
|
|
105
|
+
createdAt: new Date(),
|
|
106
|
+
updatedAt: new Date(),
|
|
107
|
+
};
|
|
108
|
+
this.sessions.set(sessionId, session);
|
|
109
|
+
return session;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
const result = await this.postCommand<{ message?: string }>(
|
|
113
|
+
this.buildForm('init_session', { session: sessionId, user }),
|
|
114
|
+
{ label: 'initSession' },
|
|
115
|
+
);
|
|
116
|
+
|
|
117
|
+
if (!result.message) {
|
|
118
|
+
throw new TRPCError({
|
|
119
|
+
code: 'INTERNAL_SERVER_ERROR',
|
|
120
|
+
message: 'AI backend returned no session message',
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
const session: AISession = {
|
|
125
|
+
id: sessionId,
|
|
126
|
+
workspaceId,
|
|
127
|
+
status: 'initialized',
|
|
128
|
+
files: [],
|
|
129
|
+
createdAt: new Date(),
|
|
130
|
+
updatedAt: new Date(),
|
|
131
|
+
};
|
|
132
|
+
this.sessions.set(sessionId, session);
|
|
133
|
+
return session;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
async processFile(
|
|
137
|
+
sessionId: string,
|
|
138
|
+
_user: string,
|
|
139
|
+
fileUrl: string,
|
|
140
|
+
fileType: 'image' | 'pdf',
|
|
141
|
+
maxPages?: number,
|
|
142
|
+
): Promise<ProcessFileResult> {
|
|
143
|
+
await mockDelay();
|
|
144
|
+
|
|
145
|
+
if (isAiMockMode()) {
|
|
146
|
+
logger.info(`[ai] mock processFile session=${sessionId} type=${fileType}`);
|
|
147
|
+
return mockProcessFile(fileType);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
const fields: Record<string, string> = { fileUrl, fileType };
|
|
151
|
+
if (maxPages) fields.maxPages = maxPages.toString();
|
|
152
|
+
|
|
153
|
+
try {
|
|
154
|
+
const result = await this.postCommand<ProcessFileResult>(
|
|
155
|
+
this.buildForm('process_file', fields),
|
|
156
|
+
{ label: 'processFile' },
|
|
157
|
+
);
|
|
158
|
+
|
|
159
|
+
if (result.status === 'error') {
|
|
160
|
+
throw new Error(result.error || 'File processing failed');
|
|
161
|
+
}
|
|
162
|
+
return result;
|
|
163
|
+
} catch (error) {
|
|
164
|
+
const message = error instanceof Error ? error.message : 'Unknown error';
|
|
165
|
+
logger.error(`[ai] processFile failed: ${message}`);
|
|
166
|
+
return {
|
|
167
|
+
status: 'error',
|
|
168
|
+
textContent: null,
|
|
169
|
+
imageDescriptions: [],
|
|
170
|
+
comprehensiveDescription: null,
|
|
171
|
+
pageCount: 0,
|
|
172
|
+
error: message,
|
|
173
|
+
};
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
async generateStudyGuide(
|
|
178
|
+
sessionId: string,
|
|
179
|
+
user: string,
|
|
180
|
+
opts?: BackendGenerationOptions,
|
|
181
|
+
): Promise<string> {
|
|
182
|
+
await mockDelay();
|
|
183
|
+
if (isAiMockMode()) {
|
|
184
|
+
logger.info(`[ai] mock generateStudyGuide session=${sessionId}`);
|
|
185
|
+
return mockStudyGuide();
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
const result = await this.postCommand<{ markdown?: string }>(
|
|
189
|
+
this.buildForm(
|
|
190
|
+
'generate_study_guide',
|
|
191
|
+
this.withRag({ session: sessionId, user }, opts),
|
|
192
|
+
),
|
|
193
|
+
{ label: 'generateStudyGuide' },
|
|
194
|
+
);
|
|
195
|
+
|
|
196
|
+
if (!result.markdown) {
|
|
197
|
+
throw new Error('AI backend returned empty study guide');
|
|
198
|
+
}
|
|
199
|
+
return result.markdown;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
async generateFlashcardQuestions(
|
|
203
|
+
sessionId: string,
|
|
204
|
+
user: string,
|
|
205
|
+
numQuestions: number,
|
|
206
|
+
difficulty: 'easy' | 'medium' | 'hard',
|
|
207
|
+
prompt?: string,
|
|
208
|
+
opts?: BackendGenerationOptions,
|
|
209
|
+
): Promise<string> {
|
|
210
|
+
await mockDelay();
|
|
211
|
+
if (isAiMockMode()) {
|
|
212
|
+
logger.info(`[ai] mock generateFlashcardQuestions session=${sessionId}`);
|
|
213
|
+
return JSON.stringify(
|
|
214
|
+
mockFlashcards(numQuestions, difficulty),
|
|
215
|
+
);
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
const fields: Record<string, string> = {
|
|
219
|
+
session: sessionId,
|
|
220
|
+
user,
|
|
221
|
+
num_questions: numQuestions.toString(),
|
|
222
|
+
difficulty,
|
|
223
|
+
};
|
|
224
|
+
if (prompt) fields.prompt = prompt;
|
|
225
|
+
|
|
226
|
+
const result = await this.postCommand<{ flashcards: string }>(
|
|
227
|
+
this.buildForm(
|
|
228
|
+
'generate_flashcard_questions',
|
|
229
|
+
this.withRag(fields, opts),
|
|
230
|
+
),
|
|
231
|
+
{ label: 'generateFlashcardQuestions' },
|
|
232
|
+
);
|
|
233
|
+
|
|
234
|
+
const parsed = JSON.parse(result.flashcards) as
|
|
235
|
+
| { flashcards?: unknown[] }
|
|
236
|
+
| unknown[];
|
|
237
|
+
if (Array.isArray(parsed)) return JSON.stringify(parsed);
|
|
238
|
+
return JSON.stringify(parsed.flashcards ?? []);
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
async generateWorksheetQuestions(
|
|
242
|
+
sessionId: string,
|
|
243
|
+
user: string,
|
|
244
|
+
numQuestions: number,
|
|
245
|
+
difficulty: 'EASY' | 'MEDIUM' | 'HARD',
|
|
246
|
+
options?: WorksheetGenerationOptions,
|
|
247
|
+
): Promise<string> {
|
|
248
|
+
await mockDelay();
|
|
249
|
+
if (isAiMockMode()) {
|
|
250
|
+
logger.info(`[ai] mock generateWorksheetQuestions session=${sessionId}`);
|
|
251
|
+
return JSON.stringify(mockWorksheet(numQuestions, difficulty, options));
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
const fields: Record<string, string> = {
|
|
255
|
+
session: sessionId,
|
|
256
|
+
user,
|
|
257
|
+
num_questions: numQuestions.toString(),
|
|
258
|
+
difficulty,
|
|
259
|
+
mode: options?.mode ?? 'practice',
|
|
260
|
+
};
|
|
261
|
+
if (options?.mcqRatio !== undefined) {
|
|
262
|
+
fields.mcq_ratio = String(options.mcqRatio);
|
|
263
|
+
}
|
|
264
|
+
if (options?.questionTypes?.length) {
|
|
265
|
+
fields.question_types = JSON.stringify(options.questionTypes);
|
|
266
|
+
}
|
|
267
|
+
if (options?.prompt) {
|
|
268
|
+
fields.worksheet_prompt = options.prompt;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
const result = await this.postCommand<{ worksheet: string }>(
|
|
272
|
+
this.buildForm(
|
|
273
|
+
'generate_worksheet_questions',
|
|
274
|
+
this.withRag(fields, { ragContext: options?.ragContext }),
|
|
275
|
+
),
|
|
276
|
+
{ label: 'generateWorksheetQuestions' },
|
|
277
|
+
);
|
|
278
|
+
return result.worksheet;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
async checkWorksheetQuestions(
|
|
282
|
+
sessionId: string,
|
|
283
|
+
user: string,
|
|
284
|
+
question: string,
|
|
285
|
+
answer: string,
|
|
286
|
+
markScheme: MarkScheme,
|
|
287
|
+
): Promise<UserMarkScheme> {
|
|
288
|
+
const result = await this.postCommand<{ marking: string }>(
|
|
289
|
+
this.buildForm('mark_worksheet_questions', {
|
|
290
|
+
session: sessionId,
|
|
291
|
+
user,
|
|
292
|
+
question,
|
|
293
|
+
answer,
|
|
294
|
+
mark_scheme: JSON.stringify(markScheme),
|
|
295
|
+
}),
|
|
296
|
+
{ label: 'checkWorksheetQuestions', retries: 2 },
|
|
297
|
+
);
|
|
298
|
+
|
|
299
|
+
return parseJsonField<UserMarkScheme>(result.marking, 'marking');
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
async generatePodcastStructure(
|
|
303
|
+
sessionId: string,
|
|
304
|
+
user: string,
|
|
305
|
+
title: string,
|
|
306
|
+
description: string,
|
|
307
|
+
prompt: string,
|
|
308
|
+
speakers: PodcastSpeaker[],
|
|
309
|
+
): Promise<any> {
|
|
310
|
+
await mockDelay();
|
|
311
|
+
if (isAiMockMode()) {
|
|
312
|
+
logger.info(`[ai] mock generatePodcastStructure session=${sessionId}`);
|
|
313
|
+
return mockPodcastStructure(title, speakers);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
try {
|
|
317
|
+
return await this.postCommand<any>(
|
|
318
|
+
this.buildForm('generate_podcast_structure', {
|
|
319
|
+
user,
|
|
320
|
+
session: sessionId,
|
|
321
|
+
title,
|
|
322
|
+
description,
|
|
323
|
+
prompt,
|
|
324
|
+
speakers: JSON.stringify(speakers),
|
|
325
|
+
}),
|
|
326
|
+
{ label: 'generatePodcastStructure' },
|
|
327
|
+
);
|
|
328
|
+
} catch (error) {
|
|
329
|
+
throw new TRPCError({
|
|
330
|
+
code: 'INTERNAL_SERVER_ERROR',
|
|
331
|
+
message: `Failed to generate podcast structure: ${error instanceof Error ? error.message : 'Unknown error'}`,
|
|
332
|
+
});
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
async generatePodcastAudioFromText(
|
|
337
|
+
sessionId: string,
|
|
338
|
+
user: string,
|
|
339
|
+
podcastId: string,
|
|
340
|
+
segmentIndex: number,
|
|
341
|
+
text: string,
|
|
342
|
+
speakers: PodcastSpeaker[],
|
|
343
|
+
voiceId?: string,
|
|
344
|
+
): Promise<any> {
|
|
345
|
+
await mockDelay();
|
|
346
|
+
if (isAiMockMode()) {
|
|
347
|
+
logger.info(`[ai] mock generatePodcastAudio session=${sessionId}`);
|
|
348
|
+
return mockPodcastAudio(user, sessionId, podcastId, segmentIndex, text);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
const fields: Record<string, string> = {
|
|
352
|
+
user,
|
|
353
|
+
session: sessionId,
|
|
354
|
+
podcast_id: podcastId,
|
|
355
|
+
segment_index: segmentIndex.toString(),
|
|
356
|
+
text,
|
|
357
|
+
speakers: JSON.stringify(speakers),
|
|
358
|
+
};
|
|
359
|
+
if (voiceId) fields.voice_id = voiceId;
|
|
360
|
+
|
|
361
|
+
try {
|
|
362
|
+
return await this.postCommand<any>(
|
|
363
|
+
this.buildForm('generate_podcast_audio_from_text', fields),
|
|
364
|
+
{ label: 'generatePodcastAudioFromText' },
|
|
365
|
+
);
|
|
366
|
+
} catch (error) {
|
|
367
|
+
throw new TRPCError({
|
|
368
|
+
code: 'INTERNAL_SERVER_ERROR',
|
|
369
|
+
message: `Failed to generate podcast audio: ${error instanceof Error ? error.message : 'Unknown error'}`,
|
|
370
|
+
});
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
async generatePodcastImage(
|
|
375
|
+
sessionId: string,
|
|
376
|
+
user: string,
|
|
377
|
+
summary: string,
|
|
378
|
+
): Promise<string> {
|
|
379
|
+
const result = await this.postCommand<{ image_key: string }>(
|
|
380
|
+
this.buildForm('generate_podcast_image', {
|
|
381
|
+
session: sessionId,
|
|
382
|
+
user,
|
|
383
|
+
summary,
|
|
384
|
+
}),
|
|
385
|
+
{ label: 'generatePodcastImage' },
|
|
386
|
+
);
|
|
387
|
+
return result.image_key;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
async segmentStudyGuide(
|
|
391
|
+
sessionId: string,
|
|
392
|
+
user: string,
|
|
393
|
+
studyGuide: string,
|
|
394
|
+
): Promise<StudyGuideSegment[]> {
|
|
395
|
+
if (isAiMockMode()) {
|
|
396
|
+
return mockStudyGuideSegmentation();
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
const result = await this.postCommand<{ segmentation: StudyGuideSegment[] }>(
|
|
400
|
+
this.buildForm('generate_study_guide_segmentation', {
|
|
401
|
+
session: sessionId,
|
|
402
|
+
user,
|
|
403
|
+
study_guide: studyGuide,
|
|
404
|
+
}),
|
|
405
|
+
{ label: 'segmentStudyGuide' },
|
|
406
|
+
);
|
|
407
|
+
return result.segmentation;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
async validateSegmentSummary(
|
|
411
|
+
sessionId: string,
|
|
412
|
+
user: string,
|
|
413
|
+
segmentContent: string,
|
|
414
|
+
studentResponse: string,
|
|
415
|
+
studyGuide: string,
|
|
416
|
+
): Promise<{ valid: boolean; feedback: string }> {
|
|
417
|
+
if (isAiMockMode()) {
|
|
418
|
+
return mockSegmentSummaryValidation();
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
const result = await this.postCommand<{ feedback: { valid: boolean; feedback: string } }>(
|
|
422
|
+
this.buildForm('validate_segment_summary', {
|
|
423
|
+
session: sessionId,
|
|
424
|
+
user,
|
|
425
|
+
segment_content: segmentContent,
|
|
426
|
+
student_response: studentResponse,
|
|
427
|
+
study_guide: studyGuide,
|
|
428
|
+
}),
|
|
429
|
+
{ label: 'validateSegmentSummary' },
|
|
430
|
+
);
|
|
431
|
+
return result.feedback;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
getSession(sessionId: string): AISession | undefined {
|
|
435
|
+
return this.sessions.get(sessionId);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
getSessionsByUserAndWorkspace(_userId: string, workspaceId: string): AISession[] {
|
|
439
|
+
return Array.from(this.sessions.values()).filter(
|
|
440
|
+
(session) => session.workspaceId === workspaceId,
|
|
441
|
+
);
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
deleteSession(sessionId: string): boolean {
|
|
445
|
+
return this.sessions.delete(sessionId);
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
async checkHealth(): Promise<boolean> {
|
|
449
|
+
await mockDelay();
|
|
450
|
+
if (isAiMockMode()) {
|
|
451
|
+
logger.info('[ai] mock health check');
|
|
452
|
+
return true;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
const uploadUrl = tryGetInferenceBackendUploadUrl();
|
|
456
|
+
if (!uploadUrl) return false;
|
|
457
|
+
|
|
458
|
+
try {
|
|
459
|
+
const response = await fetch(uploadUrl, {
|
|
460
|
+
method: 'POST',
|
|
461
|
+
body: new FormData(),
|
|
462
|
+
});
|
|
463
|
+
return response.ok;
|
|
464
|
+
} catch (error) {
|
|
465
|
+
logger.error('[ai] health check failed', error);
|
|
466
|
+
return false;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
export const inferenceBackend = new InferenceBackendClient();
|
|
472
|
+
|
|
473
|
+
if (aiConfig.inferenceBackend.url) {
|
|
474
|
+
logger.info(`[ai] inference backend: ${aiConfig.inferenceBackend.url}`);
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
if (isAiMockMode()) {
|
|
478
|
+
logger.info('[ai] mock mode enabled (DONT_TEST_INFERENCE=true)');
|
|
479
|
+
}
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
ProcessFileResult,
|
|
3
|
+
PodcastSpeaker,
|
|
4
|
+
StudyGuideSegment,
|
|
5
|
+
WorksheetGenerationOptions,
|
|
6
|
+
} from './types.js';
|
|
7
|
+
|
|
8
|
+
export function mockStudyGuide(): string {
|
|
9
|
+
return `# Mock Study Guide
|
|
10
|
+
|
|
11
|
+
## Overview
|
|
12
|
+
This is a mock study guide generated for testing purposes.
|
|
13
|
+
|
|
14
|
+
## Key Concepts
|
|
15
|
+
1. **Concept A**: Mock concept derived from uploaded materials
|
|
16
|
+
2. **Concept B**: Another mock concept with explanations
|
|
17
|
+
3. **Concept C**: A third concept with examples
|
|
18
|
+
|
|
19
|
+
## Summary
|
|
20
|
+
Mock study guide for local development when \`DONT_TEST_INFERENCE=true\`.`;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export function mockFlashcards(
|
|
24
|
+
numQuestions: number,
|
|
25
|
+
difficulty: 'easy' | 'medium' | 'hard',
|
|
26
|
+
): unknown[] {
|
|
27
|
+
return Array.from({ length: numQuestions }, (_, i) => ({
|
|
28
|
+
id: `mock-flashcard-${i + 1}`,
|
|
29
|
+
question: `Mock question ${i + 1}: What is the main concept covered in this material?`,
|
|
30
|
+
answer: `Mock answer ${i + 1}: Sample answer based on uploaded content.`,
|
|
31
|
+
difficulty,
|
|
32
|
+
category: `Mock Category ${(i % 3) + 1}`,
|
|
33
|
+
}));
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export function mockWorksheet(
|
|
37
|
+
numQuestions: number,
|
|
38
|
+
difficulty: 'EASY' | 'MEDIUM' | 'HARD',
|
|
39
|
+
options?: WorksheetGenerationOptions,
|
|
40
|
+
): object {
|
|
41
|
+
const mode = options?.mode ?? 'practice';
|
|
42
|
+
const isQuiz = mode === 'quiz';
|
|
43
|
+
return {
|
|
44
|
+
title: isQuiz ? `Mock Quiz - ${difficulty}` : `Mock Worksheet - ${difficulty} Level`,
|
|
45
|
+
description: 'Mock generated content',
|
|
46
|
+
difficulty,
|
|
47
|
+
estimatedTime: `${numQuestions * 2} min`,
|
|
48
|
+
problems: Array.from({ length: numQuestions }, (_, i) => {
|
|
49
|
+
if (isQuiz) {
|
|
50
|
+
return {
|
|
51
|
+
question: `Mock MCQ ${i + 1}: What is 2+2?`,
|
|
52
|
+
answer: '1',
|
|
53
|
+
type: 'MULTIPLE_CHOICE',
|
|
54
|
+
options: ['3', '4', '5', '6'],
|
|
55
|
+
mark_scheme: {
|
|
56
|
+
points: [{ point: 1, requirements: 'Select correct option' }],
|
|
57
|
+
totalPoints: 1,
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
return {
|
|
62
|
+
question: `Mock question ${i + 1}: Explain a concept.`,
|
|
63
|
+
answer: 'Mock answer',
|
|
64
|
+
type: 'TEXT',
|
|
65
|
+
options: [],
|
|
66
|
+
mark_scheme: {
|
|
67
|
+
points: [{ point: 1, requirements: 'Clear explanation' }],
|
|
68
|
+
totalPoints: 1,
|
|
69
|
+
},
|
|
70
|
+
};
|
|
71
|
+
}),
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function mockProcessFile(
|
|
76
|
+
fileType: 'image' | 'pdf',
|
|
77
|
+
): ProcessFileResult {
|
|
78
|
+
const mockPageCount = fileType === 'pdf' ? 15 : 1;
|
|
79
|
+
return {
|
|
80
|
+
status: 'success',
|
|
81
|
+
textContent: `Mock extracted text content from ${fileType} file.`,
|
|
82
|
+
imageDescriptions: Array.from({ length: mockPageCount }, (_, i) => ({
|
|
83
|
+
page: i + 1,
|
|
84
|
+
description: `Page ${i + 1} contains educational content with diagrams and text.`,
|
|
85
|
+
hasVisualContent: true,
|
|
86
|
+
})),
|
|
87
|
+
comprehensiveDescription: `DOCUMENT SUMMARY (${mockPageCount} ${mockPageCount === 1 ? 'page' : 'pages'})\n\nTEXT CONTENT:\nMock extracted text content...`,
|
|
88
|
+
pageCount: mockPageCount,
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export function mockPodcastStructure(
|
|
93
|
+
title: string,
|
|
94
|
+
speakers: PodcastSpeaker[],
|
|
95
|
+
): object {
|
|
96
|
+
const voiceId = speakers[0]?.id || 'mock-voice-1';
|
|
97
|
+
return {
|
|
98
|
+
success: true,
|
|
99
|
+
structure: {
|
|
100
|
+
episodeTitle: `${title} - AI Generated Episode`,
|
|
101
|
+
totalEstimatedDuration: '15 minutes',
|
|
102
|
+
segments: [
|
|
103
|
+
{
|
|
104
|
+
title: 'Welcome & Introduction',
|
|
105
|
+
content:
|
|
106
|
+
"HOST: Welcome to today's episode!\nGUEST: Thanks for having me!\nHOST: Let's dive into the topic.",
|
|
107
|
+
speaker: 'dialogue',
|
|
108
|
+
voiceId,
|
|
109
|
+
keyPoints: ['Introduction', 'What to expect'],
|
|
110
|
+
estimatedDuration: '3 minutes',
|
|
111
|
+
order: 1,
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
title: 'Main Discussion',
|
|
115
|
+
content:
|
|
116
|
+
'This is the main content section where we explore the key concepts in detail.',
|
|
117
|
+
speaker: 'host',
|
|
118
|
+
voiceId,
|
|
119
|
+
keyPoints: ['Key concept 1', 'Key concept 2'],
|
|
120
|
+
estimatedDuration: '8 minutes',
|
|
121
|
+
order: 2,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
title: 'Conclusion & Takeaways',
|
|
125
|
+
content:
|
|
126
|
+
"HOST: Let's wrap up what we've learned today.\nGUEST: The main takeaway is...\nHOST: Thanks for joining us!",
|
|
127
|
+
speaker: 'dialogue',
|
|
128
|
+
voiceId,
|
|
129
|
+
keyPoints: ['Summary', 'Next steps'],
|
|
130
|
+
estimatedDuration: '4 minutes',
|
|
131
|
+
order: 3,
|
|
132
|
+
},
|
|
133
|
+
],
|
|
134
|
+
},
|
|
135
|
+
};
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export function mockPodcastAudio(
|
|
139
|
+
user: string,
|
|
140
|
+
sessionId: string,
|
|
141
|
+
podcastId: string,
|
|
142
|
+
segmentIndex: number,
|
|
143
|
+
text: string,
|
|
144
|
+
): object {
|
|
145
|
+
const isDialogue = text.includes('HOST:') || text.includes('GUEST:');
|
|
146
|
+
return {
|
|
147
|
+
success: true,
|
|
148
|
+
segmentIndex,
|
|
149
|
+
objectKey: `${user}/${sessionId}/podcasts/${podcastId}/segment_${segmentIndex}.mp3`,
|
|
150
|
+
duration: 45 + Math.floor(Math.random() * 30),
|
|
151
|
+
type: isDialogue ? 'dialogue' : 'monologue',
|
|
152
|
+
...(isDialogue ? { partCount: 4 } : {}),
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export function mockStudyGuideSegmentation(): StudyGuideSegment[] {
|
|
157
|
+
return [
|
|
158
|
+
{ hint: 'Overview', content: 'Mock segment 1 content' },
|
|
159
|
+
{ hint: 'Key concepts', content: 'Mock segment 2 content' },
|
|
160
|
+
];
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export function mockSegmentSummaryValidation(): {
|
|
164
|
+
valid: boolean;
|
|
165
|
+
feedback: string;
|
|
166
|
+
} {
|
|
167
|
+
return {
|
|
168
|
+
valid: true,
|
|
169
|
+
feedback: 'Mock validation feedback for local development.',
|
|
170
|
+
};
|
|
171
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
export interface AISession {
|
|
2
|
+
id: string;
|
|
3
|
+
workspaceId: string;
|
|
4
|
+
status: 'initialized' | 'processing' | 'ready' | 'error';
|
|
5
|
+
files: string[];
|
|
6
|
+
instructionText?: string;
|
|
7
|
+
createdAt: Date;
|
|
8
|
+
updatedAt: Date;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface ProcessFileResult {
|
|
12
|
+
status: 'success' | 'error';
|
|
13
|
+
textContent: string | null;
|
|
14
|
+
imageDescriptions: Array<{
|
|
15
|
+
page: number;
|
|
16
|
+
description: string;
|
|
17
|
+
hasVisualContent: boolean;
|
|
18
|
+
}>;
|
|
19
|
+
comprehensiveDescription: string | null;
|
|
20
|
+
pageCount: number;
|
|
21
|
+
error?: string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface PodcastSpeaker {
|
|
25
|
+
id: string;
|
|
26
|
+
role: string;
|
|
27
|
+
name?: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface WorksheetGenerationOptions {
|
|
31
|
+
mode?: 'practice' | 'quiz';
|
|
32
|
+
mcqRatio?: number;
|
|
33
|
+
questionTypes?: string[];
|
|
34
|
+
prompt?: string;
|
|
35
|
+
ragContext?: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface BackendGenerationOptions {
|
|
39
|
+
ragContext?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface StudyGuideSegment {
|
|
43
|
+
hint: string;
|
|
44
|
+
content: string;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface SegmentSummaryValidation {
|
|
48
|
+
valid: boolean;
|
|
49
|
+
feedback: string;
|
|
50
|
+
}
|