@orkg/scidquest 1.1.0 → 1.1.4
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 +1 -1
- package/dist/assets/pdf.worker.min.mjs +28 -0
- package/dist/components/AI/AIConfigurationButton.d.ts +3 -0
- package/dist/components/AI/AIConfigurationDialog.d.ts +7 -0
- package/dist/components/TemplateQuestionaire/AIAssistantButton.d.ts +33 -0
- package/dist/components/TemplateQuestionaire/BufferedTextField.d.ts +19 -0
- package/dist/components/TemplateQuestionaire/FieldRow.d.ts +8 -0
- package/dist/components/TemplateQuestionaire/ImportDialog.d.ts +12 -0
- package/dist/components/TemplateQuestionaire/InfoTooltip.d.ts +7 -0
- package/dist/components/TemplateQuestionaire/InlineValidationFeedback.d.ts +8 -0
- package/dist/components/TemplateQuestionaire/NodeWrapper.d.ts +8 -0
- package/dist/components/TemplateQuestionaire/QuestionnaireAIHistoryDialog.d.ts +15 -0
- package/dist/components/TemplateQuestionaire/Questions/GroupQuestion.d.ts +30 -0
- package/dist/components/TemplateQuestionaire/Questions/MultiSelectQuestion.d.ts +31 -0
- package/dist/components/TemplateQuestionaire/Questions/QuestionRenderer.d.ts +32 -0
- package/dist/components/TemplateQuestionaire/Questions/RepeatGroupQuestion.d.ts +30 -0
- package/dist/components/TemplateQuestionaire/Questions/RepeatTextQuestion.d.ts +31 -0
- package/dist/components/TemplateQuestionaire/Questions/SelectQuestion.d.ts +31 -0
- package/dist/components/TemplateQuestionaire/Questions/TextQuestion.d.ts +32 -0
- package/dist/components/TemplateQuestionaire/SectionAccordion.d.ts +42 -0
- package/dist/components/TemplateQuestionaire/SuggestionBox.d.ts +30 -0
- package/dist/components/TemplateQuestionaire/TopSummaryBar.d.ts +43 -0
- package/dist/components/TemplateQuestionaire/ValidationStatusButton.d.ts +33 -0
- package/dist/context/QuestionnaireAIContext.d.ts +48 -0
- package/dist/hooks/useSuggestionGenerator.d.ts +30 -0
- package/dist/lib/adapter.d.ts +3 -0
- package/dist/lib/components/PDFUpload.d.ts +10 -0
- package/dist/lib/components/PdfViewer.d.ts +27 -0
- package/dist/lib/components/ResearchQuestionnaireApp.d.ts +32 -0
- package/dist/lib/components/ResearchQuestionnaireFieldAiWrapper.d.ts +25 -0
- package/dist/lib/components/TemplateQuestionnaire.d.ts +27 -0
- package/dist/lib/context.d.ts +14 -0
- package/dist/lib/hooks/useSuggestionGenerator.d.ts +26 -0
- package/dist/lib/index.d.ts +25 -0
- package/dist/lib/questionnaire-template-helpers.d.ts +10 -0
- package/dist/lib/research-questionnaire-workspace.d.ts +33 -0
- package/dist/lib/types.d.ts +121 -0
- package/dist/lib/utils/createLLMServiceFromAIService.d.ts +3 -0
- package/dist/scidquest.es.js +6441 -64432
- package/dist/semanticChunker-CNi7GgV8.js +84 -0
- package/dist/services/aiService.d.ts +39 -0
- package/dist/services/backendAIService.d.ts +191 -0
- package/dist/store/hooks.d.ts +4 -0
- package/dist/store/slices/aiSlice.d.ts +21 -0
- package/dist/store/store.d.ts +9 -0
- package/dist/types/context.d.ts +39 -0
- package/dist/utils/contextGatherer.d.ts +39 -0
- package/dist/utils/fuzzyPdfMatcher.d.ts +15 -0
- package/dist/utils/pdf.d.ts +25 -0
- package/dist/utils/pdfWorker.d.ts +10 -0
- package/dist/utils/robustPdfMatcher.d.ts +22 -0
- package/dist/utils/semanticChunker.d.ts +27 -0
- package/dist/utils/simplePdfMatcher.d.ts +13 -0
- package/dist/utils/structuredPdfExtractor.d.ts +34 -0
- package/dist/utils/suggestions.d.ts +88 -0
- package/dist/utils/theme.d.ts +6 -0
- package/dist/utils/tokenEstimator.d.ts +32 -0
- package/dist/utils/tokenPdfMatcher.d.ts +14 -0
- package/dist/utils/unicodeNormalizer.d.ts +13 -0
- package/dist/utils/validationRules.d.ts +51 -0
- package/package.json +30 -8
- package/dist/semanticChunker-CEckDeUn.js +0 -102
package/README.md
CHANGED