@lobehub/chat 1.11.1 → 1.11.3
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/.nvmrc +1 -1
- package/CHANGELOG.md +42 -0
- package/Dockerfile.database +70 -22
- package/README.md +1 -1
- package/README.zh-CN.md +1 -1
- package/docs/self-hosting/server-database/vercel.mdx +78 -75
- package/docs/self-hosting/start.zh-CN.mdx +2 -2
- package/docs/usage/providers/siliconcloud.mdx +4 -3
- package/docs/usage/providers/siliconcloud.zh-CN.mdx +0 -1
- package/locales/ar/common.json +3 -0
- package/locales/ar/components.json +60 -0
- package/locales/ar/setting.json +5 -0
- package/locales/bg-BG/common.json +3 -0
- package/locales/bg-BG/components.json +60 -0
- package/locales/bg-BG/setting.json +5 -0
- package/locales/de-DE/common.json +3 -0
- package/locales/de-DE/components.json +60 -0
- package/locales/de-DE/setting.json +5 -0
- package/locales/en-US/common.json +3 -0
- package/locales/en-US/components.json +60 -0
- package/locales/en-US/setting.json +5 -0
- package/locales/es-ES/common.json +3 -0
- package/locales/es-ES/components.json +60 -0
- package/locales/es-ES/setting.json +5 -0
- package/locales/fr-FR/common.json +3 -0
- package/locales/fr-FR/components.json +60 -0
- package/locales/fr-FR/setting.json +5 -0
- package/locales/it-IT/common.json +3 -0
- package/locales/it-IT/components.json +60 -0
- package/locales/it-IT/setting.json +5 -0
- package/locales/ja-JP/common.json +3 -0
- package/locales/ja-JP/components.json +60 -0
- package/locales/ja-JP/setting.json +5 -0
- package/locales/ko-KR/common.json +3 -0
- package/locales/ko-KR/components.json +60 -0
- package/locales/ko-KR/setting.json +5 -0
- package/locales/nl-NL/common.json +3 -0
- package/locales/nl-NL/components.json +60 -0
- package/locales/nl-NL/setting.json +5 -0
- package/locales/pl-PL/common.json +3 -0
- package/locales/pl-PL/components.json +60 -0
- package/locales/pl-PL/setting.json +5 -0
- package/locales/pt-BR/common.json +3 -0
- package/locales/pt-BR/components.json +60 -0
- package/locales/pt-BR/setting.json +5 -0
- package/locales/ru-RU/common.json +3 -0
- package/locales/ru-RU/components.json +60 -0
- package/locales/ru-RU/setting.json +5 -0
- package/locales/tr-TR/common.json +3 -0
- package/locales/tr-TR/components.json +60 -0
- package/locales/tr-TR/setting.json +5 -0
- package/locales/vi-VN/common.json +3 -0
- package/locales/vi-VN/components.json +60 -0
- package/locales/vi-VN/setting.json +5 -0
- package/locales/zh-CN/common.json +3 -0
- package/locales/zh-CN/components.json +60 -0
- package/locales/zh-CN/error.json +1 -1
- package/locales/zh-CN/setting.json +6 -1
- package/locales/zh-TW/common.json +3 -0
- package/locales/zh-TW/components.json +60 -0
- package/locales/zh-TW/setting.json +5 -0
- package/next.config.mjs +67 -66
- package/package.json +20 -8
- package/src/app/(main)/@nav/_layout/Desktop/TopActions.test.tsx +11 -0
- package/src/app/(main)/@nav/_layout/Desktop/TopActions.tsx +13 -1
- package/src/app/(main)/settings/_layout/Desktop/SideBar.tsx +3 -22
- package/src/components/FileIcon/config.ts +12 -0
- package/src/components/FileIcon/index.tsx +30 -0
- package/src/components/FunctionModal/createModalHooks.ts +46 -0
- package/src/components/FunctionModal/index.ts +1 -0
- package/src/components/FunctionModal/style.tsx +39 -0
- package/src/components/GoBack/index.tsx +46 -0
- package/src/components/PanelTitle/index.tsx +41 -0
- package/src/components/RepoIcon/index.tsx +22 -0
- package/src/components/SidebarHeader/index.tsx +4 -2
- package/src/components/TipGuide/index.tsx +150 -0
- package/src/config/featureFlags/schema.ts +6 -0
- package/src/config/file.ts +6 -0
- package/src/config/knowledge.ts +17 -0
- package/src/const/settings/llm.ts +1 -0
- package/src/const/settings/systemAgent.ts +1 -0
- package/src/database/client/models/message.ts +5 -0
- package/src/features/Conversation/Messages/Default.tsx +1 -2
- package/src/libs/agent-runtime/AgentRuntime.ts +9 -2
- package/src/libs/agent-runtime/BaseAI.ts +14 -1
- package/src/libs/agent-runtime/qwen/index.ts +3 -4
- package/src/libs/agent-runtime/types/embeddings.ts +43 -0
- package/src/libs/agent-runtime/types/index.ts +1 -0
- package/src/libs/agent-runtime/utils/openaiCompatibleFactory/index.ts +25 -2
- package/src/libs/langchain/file.ts +29 -0
- package/src/libs/langchain/index.ts +1 -0
- package/src/libs/langchain/loaders/code/__tests__/index.test.ts +34 -0
- package/src/libs/langchain/loaders/code/__tests__/long.json +250 -0
- package/src/libs/langchain/loaders/code/__tests__/long.txt +885 -0
- package/src/libs/langchain/loaders/code/index.ts +15 -0
- package/src/libs/langchain/loaders/config.ts +6 -0
- package/src/libs/langchain/loaders/docx/index.ts +13 -0
- package/src/libs/langchain/loaders/index.ts +98 -0
- package/src/libs/langchain/loaders/markdown/__tests__/demo.mdx +325 -0
- package/src/libs/langchain/loaders/markdown/__tests__/index.test.ts +13 -0
- package/src/libs/langchain/loaders/markdown/index.ts +9 -0
- package/src/libs/langchain/loaders/pdf/index.ts +7 -0
- package/src/libs/langchain/loaders/pptx/index.ts +7 -0
- package/src/libs/langchain/loaders/txt/__tests__/index.test.ts +54 -0
- package/src/libs/langchain/loaders/txt/__tests__/long.json +38 -0
- package/src/libs/langchain/loaders/txt/__tests__/pg24022.txt +83 -0
- package/src/libs/langchain/loaders/txt/index.ts +9 -0
- package/src/libs/langchain/types.ts +1 -0
- package/src/libs/unstructured/__tests__/fixtures/image-parse/fast-partition-none-output.json +3258 -0
- package/src/libs/unstructured/__tests__/fixtures/image-parse/fast-partition-none-raw.json +3255 -0
- package/src/libs/unstructured/__tests__/fixtures/table-parse/auto-partition-basic-output.json +347 -0
- package/src/libs/unstructured/__tests__/fixtures/table-parse/auto-partition-basic-raw.json +131 -0
- package/src/libs/unstructured/__tests__/fixtures/table-parse/auto-partition-raw.json +276 -0
- package/src/libs/unstructured/__tests__/fixtures/table-parse/fast-partition-basic-output.json +1865 -0
- package/src/libs/unstructured/__tests__/fixtures/table-parse/fast-partition-basic-raw.json +111 -0
- package/src/libs/unstructured/__tests__/fixtures/table-parse/fast-partition-raw.json +1892 -0
- package/src/libs/unstructured/__tests__/index.test.ts +165 -0
- package/src/libs/unstructured/index.ts +166 -0
- package/src/locales/default/common.ts +3 -0
- package/src/locales/default/components.ts +62 -0
- package/src/locales/default/setting.ts +5 -0
- package/src/store/file/initialState.ts +1 -1
- package/src/store/file/selectors.ts +1 -1
- package/src/store/file/store.ts +1 -1
- package/src/store/global/initialState.ts +5 -0
- package/src/store/global/selectors.ts +4 -0
- package/src/store/serverConfig/selectors.test.ts +1 -0
- package/src/types/user/index.ts +12 -4
- package/src/types/user/settings/systemAgent.ts +1 -0
- package/src/utils/colorUtils.ts +19 -0
- package/src/utils/sleep.ts +4 -0
- /package/src/store/file/slices/{images → chat}/action.test.ts +0 -0
- /package/src/store/file/slices/{images → chat}/action.ts +0 -0
- /package/src/store/file/slices/{images → chat}/index.ts +0 -0
- /package/src/store/file/slices/{images → chat}/initialState.ts +0 -0
- /package/src/store/file/slices/{images → chat}/selectors.test.ts +0 -0
- /package/src/store/file/slices/{images → chat}/selectors.ts +0 -0
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "Header",
|
|
4
|
+
"element_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
5
|
+
"text": "Multiple Sclerosis Journal 29(6)",
|
|
6
|
+
"metadata": {
|
|
7
|
+
"coordinates": {
|
|
8
|
+
"points": [
|
|
9
|
+
[68.1502456665039, 92.5256576538086],
|
|
10
|
+
[68.1502456665039, 125.85709381103516],
|
|
11
|
+
[456.638916015625, 125.85709381103516],
|
|
12
|
+
[456.638916015625, 92.5256576538086]
|
|
13
|
+
],
|
|
14
|
+
"system": "PixelSpace",
|
|
15
|
+
"layout_width": 1654,
|
|
16
|
+
"layout_height": 2205
|
|
17
|
+
},
|
|
18
|
+
"filetype": "application/pdf",
|
|
19
|
+
"languages": ["eng"],
|
|
20
|
+
"page_number": 1,
|
|
21
|
+
"filename": "table-parse-case.pdf"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"type": "NarrativeText",
|
|
26
|
+
"element_id": "10278547-1ddf-4211-8c0c-f8256b28cc4a",
|
|
27
|
+
"text": "Table 1. Characteristics of the study population.",
|
|
28
|
+
"metadata": {
|
|
29
|
+
"coordinates": {
|
|
30
|
+
"points": [
|
|
31
|
+
[62.99222222222222, 195.21878051757812],
|
|
32
|
+
[62.99222222222222, 227.29751586914062],
|
|
33
|
+
[551.6422222222224, 227.29751586914062],
|
|
34
|
+
[551.6422222222224, 195.21878051757812]
|
|
35
|
+
],
|
|
36
|
+
"system": "PixelSpace",
|
|
37
|
+
"layout_width": 1654,
|
|
38
|
+
"layout_height": 2205
|
|
39
|
+
},
|
|
40
|
+
"filetype": "application/pdf",
|
|
41
|
+
"languages": ["eng"],
|
|
42
|
+
"page_number": 1,
|
|
43
|
+
"parent_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
44
|
+
"filename": "table-parse-case.pdf"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "Table",
|
|
49
|
+
"element_id": "060416c3-6c7a-44de-ad79-b38e5601d48a",
|
|
50
|
+
"text": "Male Female Overall MS subjects Control subjects p-value MS subjects Control subjects p-value MS subjects Control subjects p-value N Follow-up time (years) Female (%) Age (years) Ethnicity – white (%) Smoking status (%) Non-smoker Ex-smoker Current smoker eFI ratio Fit Mid frailty Moderate frailty Severe frailty Number of primary care visits in previous year Index of multiple deprivation (IMD; %) 3685 9.9 (6.1) 46.3 (13.3) 92.3 41.5 17.5 41.1 0.02 (0.04) 97.2 2.8 0.0 0.0 6.9 (10.3) 21,931 11.4 (6.5) <0.001 46.3 (13.3) 93.5 0.852 0.013 53.8 14.7 31.6 0.01 (0.03) <0.001 98.3 1.6 0.0 0.0 2.2 (5.0) <0.001 <0.001 <0.001 8566 10.4 (6.3) 44.3 (13.3) 91.5 49.5 13.9 36.6 0.03 (0.04) 95.8 4.0 0.2 0.0 8.2 (11.5) 50,640 11.5 (6.5) <0.001 44.3 (13.3) 94.1 0.907 <0.001 60.0 11.6 28.5 0.02 (0.04) <0.001 97.1 2.8 0.1 0.0 3.2 (6.1) <0.001 <0.001 <0.001 12,251 10.3 (6.3) 69.9 44.9 (13.3) 93.9 47.1 15 37.9 0.03 (0.04) 96.2 3.7 0.1 0.0 7.8 (11.2) 72,572 11.5 (6.5) <0.001 69.8 44.9 (13.3) 91.2 0.752 0.727 <0.001 58.1 12.5 29.4 0.02 (0.04) <0.001 97.4 2.5 0.1 0.0 2.9 (5.9) <0.001 <0.001 <0.001 1Q – least deprived 13.7 13.7 14.6 14.6 14.4 14.4 2Q 3Q 4Q 5Q – most deprived Missing data 18.5 17.6 20.2 20.6 9.3 18.4 17.6 20.3 20.6 9.4 1.000 18.5 17.9 18.8 20.3 9.8 18.5 17.9 18.8 20.3 9.9 1.000 18.5 17.8 19.2 20.4 9.7 18.5 17.8 19.2 20.4 9.7 1.000",
|
|
51
|
+
"metadata": {
|
|
52
|
+
"coordinates": {
|
|
53
|
+
"points": [
|
|
54
|
+
[67.73748779296875, 232.2743377685547],
|
|
55
|
+
[67.73748779296875, 1326.780029296875],
|
|
56
|
+
[1541.0694580078125, 1326.780029296875],
|
|
57
|
+
[1541.0694580078125, 232.2743377685547]
|
|
58
|
+
],
|
|
59
|
+
"system": "PixelSpace",
|
|
60
|
+
"layout_width": 1654,
|
|
61
|
+
"layout_height": 2205
|
|
62
|
+
},
|
|
63
|
+
"text_as_html": "<table><thead><tr><th></th><th colspan=\"3\">Male</th><th colspan=\"3\">Female</th><th colspan=\"2\">Overall</th><th rowspan=\"2\">p-value</th></tr><tr><th></th><th>MS subjects</th><th>Control \nsubjects</th><th></th><th>p-value MS subjects Control \nsubjects</th><th></th><th>p-value</th><th>MS \nsubjects</th><th>Control \nsubjects</th></tr></thead><tbody><tr><td>N</td><td>3685</td><td>21,931</td><td></td><td>8566</td><td>50,640</td><td></td><td>12,251</td><td>72,572</td><td></td></tr><tr><td>Follow-up time (years)</td><td>9.9 (6.1)</td><td>11.4(6.5)</td><td><0.001</td><td>10.4 (6.3)</td><td>11.5(6.5)</td><td><0.001</td><td>10.3(6.3)</td><td>11.5(6.5)</td><td><0.001</td></tr><tr><td>Female (%)</td><td></td><td></td><td></td><td></td><td></td><td></td><td>69.9</td><td>69.8</td><td>0.752</td></tr><tr><td>Age (years)</td><td>46.3 (13.3)</td><td>46.3(13.3)</td><td>0.852</td><td>44.3(13.3)</td><td>44.3(13.3)</td><td>0.907</td><td>44.9(13.3)</td><td>44.9(13.3)</td><td>0.727</td></tr><tr><td>Ethnicity — white (%)</td><td>923</td><td>93.5</td><td>0.013</td><td>915</td><td>94.1</td><td><0.001</td><td>93.9</td><td>91.2</td><td><0.00</td></tr><tr><td colspan=\"10\">Smoking status (%)</td></tr><tr><td>Non-smoker</td><td>415</td><td>53.8</td><td></td><td>49.5</td><td>60.0</td><td></td><td>47.1</td><td>58.1</td><td></td></tr><tr><td>Ex-smoker</td><td>17.5</td><td>14.7</td><td><0.001</td><td>13.9</td><td>11.6</td><td><0.001</td><td>15</td><td>12.5</td><td><0.00</td></tr><tr><td>Current smoker</td><td>41.1</td><td>31.6</td><td></td><td>36.6</td><td>28.5</td><td></td><td>379</td><td>294</td><td></td></tr><tr><td>eFI ratio</td><td>0.02 (0.04)</td><td>0.01 (0.03)</td><td><0.001</td><td>0.03 (0.04)</td><td>0.02 (0.04)</td><td><0.001</td><td>0.03 (0.04)</td><td>0.02 (0.04)</td><td><0.00</td></tr><tr><td>Fit</td><td>97.2</td><td>98.3</td><td></td><td>95.8</td><td>97.1</td><td></td><td>96.2</td><td>97.4</td><td></td></tr><tr><td>Mid frailty</td><td>2.8</td><td>1.6</td><td></td><td>4.0</td><td>2.8</td><td></td><td>3.7</td><td>2.5</td><td></td></tr><tr><td>Moderate frailty</td><td>0.0</td><td>0.0</td><td><0.001</td><td>0.2</td><td>0.1</td><td><0.001</td><td>0.1</td><td>0.1</td><td><0.00</td></tr><tr><td>Severe frailty</td><td>0.0</td><td>0.0</td><td></td><td>0.0</td><td>0.0</td><td></td><td>0.0</td><td>0.0</td><td></td></tr><tr><td>Number of primary care visits in previous year</td><td>6.9 (10.3)</td><td>22(5.0)</td><td><0.001</td><td>82(11.5)</td><td>32(6.1)</td><td><0.001</td><td>78(112)</td><td>29(5.9)</td><td><0.00</td></tr><tr><td colspan=\"10\">Index of multiple deprivation (IMD; %)</td></tr><tr><td>1Q — least deprived</td><td>13.7</td><td>13.7</td><td></td><td>14.6</td><td>14.6</td><td></td><td>144</td><td>144</td><td></td></tr><tr><td>2Q</td><td>18.5</td><td>18.4</td><td></td><td>18.5</td><td>18.5</td><td></td><td>18.5</td><td>18.5</td><td></td></tr><tr><td>3Q</td><td>17.6</td><td>17.6</td><td></td><td>17.9</td><td>17.9</td><td></td><td>17.8</td><td>17.8</td><td></td></tr><tr><td>4Q</td><td>20.2</td><td>203</td><td>1.000</td><td>18.8</td><td>18.8</td><td>1.000</td><td>19.2</td><td>19.2</td><td>1.000</td></tr><tr><td>5Q — most deprived</td><td>20.6</td><td>20.6</td><td></td><td>20.3</td><td>20.3</td><td></td><td>204</td><td>204</td><td></td></tr><tr><td>Missing data</td><td>9.3</td><td>9.4</td><td></td><td>9.8</td><td>9.9</td><td></td><td>9.7</td><td>9.7</td><td></td></tr></tbody></table>",
|
|
64
|
+
"filetype": "application/pdf",
|
|
65
|
+
"languages": ["eng"],
|
|
66
|
+
"page_number": 1,
|
|
67
|
+
"parent_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
68
|
+
"filename": "table-parse-case.pdf"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"type": "NarrativeText",
|
|
73
|
+
"element_id": "ae107d03-ad16-4fe7-8a5a-6bccd7920004",
|
|
74
|
+
"text": "Individuals were classified as fit, if the eFI score was below 0.12; mildly frail, if the score was between 0.12 and 0.24; moderately frail, if the score was between 0.24 and 0.36; severely frail, if the score was 0.36 and above. Differences between groups were assessed employing Chi-square test, Student’s t-test and the Kruskal–Wallis test, as appropriate.",
|
|
75
|
+
"metadata": {
|
|
76
|
+
"coordinates": {
|
|
77
|
+
"points": [
|
|
78
|
+
[79.55477905273438, 1334.46533203125],
|
|
79
|
+
[79.55477905273438, 1417.9267578125],
|
|
80
|
+
[1518.767333984375, 1417.9267578125],
|
|
81
|
+
[1518.767333984375, 1334.46533203125]
|
|
82
|
+
],
|
|
83
|
+
"system": "PixelSpace",
|
|
84
|
+
"layout_width": 1654,
|
|
85
|
+
"layout_height": 2205
|
|
86
|
+
},
|
|
87
|
+
"filetype": "application/pdf",
|
|
88
|
+
"languages": ["eng"],
|
|
89
|
+
"page_number": 1,
|
|
90
|
+
"parent_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
91
|
+
"filename": "table-parse-case.pdf"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"type": "NarrativeText",
|
|
96
|
+
"element_id": "28830196-9476-4be2-ab5d-5f771f4c63ce",
|
|
97
|
+
"text": "was even lower in men (PR = 0.27, 95% CI = 0.18, 0.39) than in women (PR = 0.38, 95% CI = 0.30, 0.49; Figure 1), but the difference was not statistically sig- nificant (p = 0.097).",
|
|
98
|
+
"metadata": {
|
|
99
|
+
"coordinates": {
|
|
100
|
+
"points": [
|
|
101
|
+
[309.16070556640625, 1487.09716796875],
|
|
102
|
+
[309.16070556640625, 1618.604248046875],
|
|
103
|
+
[915.4883333333333, 1618.604248046875],
|
|
104
|
+
[915.4883333333333, 1487.09716796875]
|
|
105
|
+
],
|
|
106
|
+
"system": "PixelSpace",
|
|
107
|
+
"layout_width": 1654,
|
|
108
|
+
"layout_height": 2205
|
|
109
|
+
},
|
|
110
|
+
"filetype": "application/pdf",
|
|
111
|
+
"languages": ["eng"],
|
|
112
|
+
"page_number": 1,
|
|
113
|
+
"parent_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
114
|
+
"filename": "table-parse-case.pdf"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"type": "NarrativeText",
|
|
119
|
+
"element_id": "a54d4813-a0bf-4d95-8695-4456b2e8cdef",
|
|
120
|
+
"text": "Hyperlipidaemia. Treatment with lipid-lowering medications was lower in PwMS, as compared with matched controls (PR = 0.63, 95% CI = 0.54, 0.74). This was particularly pronounced for men (women: PR = 0.71, 95% CI = 0.59, 0.87; men: PR = 0.41, 95% CI = 0.37, 0.62).",
|
|
121
|
+
"metadata": {
|
|
122
|
+
"coordinates": {
|
|
123
|
+
"points": [
|
|
124
|
+
[310.3989562988281, 1659.569580078125],
|
|
125
|
+
[310.3989562988281, 1858.0975341796875],
|
|
126
|
+
[915.5438888888887, 1858.0975341796875],
|
|
127
|
+
[915.5438888888887, 1659.569580078125]
|
|
128
|
+
],
|
|
129
|
+
"system": "PixelSpace",
|
|
130
|
+
"layout_width": 1654,
|
|
131
|
+
"layout_height": 2205
|
|
132
|
+
},
|
|
133
|
+
"filetype": "application/pdf",
|
|
134
|
+
"languages": ["eng"],
|
|
135
|
+
"page_number": 1,
|
|
136
|
+
"parent_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
137
|
+
"filename": "table-parse-case.pdf"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"type": "NarrativeText",
|
|
142
|
+
"element_id": "43379e74-c084-4943-b491-8b5ef9fb94a1",
|
|
143
|
+
"text": "Differences in risk factor severity",
|
|
144
|
+
"metadata": {
|
|
145
|
+
"coordinates": {
|
|
146
|
+
"points": [
|
|
147
|
+
[311.79931640625, 1930.5511474609375],
|
|
148
|
+
[311.79931640625, 1964.60888671875],
|
|
149
|
+
[690.9146118164062, 1964.60888671875],
|
|
150
|
+
[690.9146118164062, 1930.5511474609375]
|
|
151
|
+
],
|
|
152
|
+
"system": "PixelSpace",
|
|
153
|
+
"layout_width": 1654,
|
|
154
|
+
"layout_height": 2205
|
|
155
|
+
},
|
|
156
|
+
"filetype": "application/pdf",
|
|
157
|
+
"languages": ["eng"],
|
|
158
|
+
"page_number": 1,
|
|
159
|
+
"parent_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
160
|
+
"filename": "table-parse-case.pdf"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"type": "NarrativeText",
|
|
165
|
+
"element_id": "99d2471c-9527-4712-809b-d13f5781b1ac",
|
|
166
|
+
"text": "As compared with matched controls, after adjustment, PwMS had a 0.4-mm Hg lower systolic blood",
|
|
167
|
+
"metadata": {
|
|
168
|
+
"coordinates": {
|
|
169
|
+
"points": [
|
|
170
|
+
[304.48089599609375, 1973.27734375],
|
|
171
|
+
[304.48089599609375, 2040.0789794921875],
|
|
172
|
+
[915.4605555555554, 2040.0789794921875],
|
|
173
|
+
[915.4605555555554, 1973.27734375]
|
|
174
|
+
],
|
|
175
|
+
"system": "PixelSpace",
|
|
176
|
+
"layout_width": 1654,
|
|
177
|
+
"layout_height": 2205
|
|
178
|
+
},
|
|
179
|
+
"filetype": "application/pdf",
|
|
180
|
+
"languages": ["eng"],
|
|
181
|
+
"page_number": 1,
|
|
182
|
+
"parent_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
183
|
+
"filename": "table-parse-case.pdf"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"type": "NarrativeText",
|
|
188
|
+
"element_id": "bef2fae2-6dc2-43dc-a6d5-ab2b9fa67094",
|
|
189
|
+
"text": "pressure at the index year. The magnitude was greater for men than women, considering that men had almost a 3-mm Hg lower blood pressure than matched con- trols (overall: coeff. = −0.37, 95% CI = −0.60, −0.13; women: −0.54, 95% CI = −0.96, −0.12; men: −2.81, 95% CI = −3.84, −1.77). The differences were greater when restricting analyses to only those with a diagno- sis of hypertension at baseline, as PwMS had a 3.3- mm Hg lower systolic blood pressure then matched controls (coeff. = −3.27, 95% CI = −5.04, −1.50); dif- ferences were confirmed in women but not in men (women: coeff. = −2.56, 95% CI = −3.84, −1.27; men: −0.27, 95% CI = 0.01, −2.56).",
|
|
190
|
+
"metadata": {
|
|
191
|
+
"coordinates": {
|
|
192
|
+
"points": [
|
|
193
|
+
[941.5365600585938, 1483.3629150390625],
|
|
194
|
+
[941.5365600585938, 1913.772216796875],
|
|
195
|
+
[1542.4469444444444, 1913.772216796875],
|
|
196
|
+
[1542.4469444444444, 1483.3629150390625]
|
|
197
|
+
],
|
|
198
|
+
"system": "PixelSpace",
|
|
199
|
+
"layout_width": 1654,
|
|
200
|
+
"layout_height": 2205
|
|
201
|
+
},
|
|
202
|
+
"filetype": "application/pdf",
|
|
203
|
+
"languages": ["eng"],
|
|
204
|
+
"page_number": 1,
|
|
205
|
+
"parent_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
206
|
+
"filename": "table-parse-case.pdf"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"type": "NarrativeText",
|
|
211
|
+
"element_id": "a8295c74-bb0e-46f8-b831-d1b94f8fbb70",
|
|
212
|
+
"text": "In contrast, PwMS had higher levels of diastolic blood pressure at baseline, as compared with matched controls (coeff. = 0.29, 95% CI = 0.14, 0.43). However,",
|
|
213
|
+
"metadata": {
|
|
214
|
+
"coordinates": {
|
|
215
|
+
"points": [
|
|
216
|
+
[936.9419555664062, 1938.433837890625],
|
|
217
|
+
[936.9419555664062, 2038.0758056640625],
|
|
218
|
+
[1542.3913888888887, 2038.0758056640625],
|
|
219
|
+
[1542.3913888888887, 1938.433837890625]
|
|
220
|
+
],
|
|
221
|
+
"system": "PixelSpace",
|
|
222
|
+
"layout_width": 1654,
|
|
223
|
+
"layout_height": 2205
|
|
224
|
+
},
|
|
225
|
+
"filetype": "application/pdf",
|
|
226
|
+
"languages": ["eng"],
|
|
227
|
+
"page_number": 1,
|
|
228
|
+
"parent_id": "1b4d9f8d-b2ab-47cb-861b-078def265ad4",
|
|
229
|
+
"filename": "table-parse-case.pdf"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"type": "PageNumber",
|
|
234
|
+
"element_id": "723c0cc6-8780-4492-9b1e-19e465863edf",
|
|
235
|
+
"text": "674",
|
|
236
|
+
"metadata": {
|
|
237
|
+
"coordinates": {
|
|
238
|
+
"points": [
|
|
239
|
+
[69.10188293457031, 2094.861572265625],
|
|
240
|
+
[69.10188293457031, 2115.869722222222],
|
|
241
|
+
[102.46333333333334, 2115.869722222222],
|
|
242
|
+
[102.46333333333334, 2094.861572265625]
|
|
243
|
+
],
|
|
244
|
+
"system": "PixelSpace",
|
|
245
|
+
"layout_width": 1654,
|
|
246
|
+
"layout_height": 2205
|
|
247
|
+
},
|
|
248
|
+
"filetype": "application/pdf",
|
|
249
|
+
"languages": ["eng"],
|
|
250
|
+
"page_number": 1,
|
|
251
|
+
"filename": "table-parse-case.pdf"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"type": "Footer",
|
|
256
|
+
"element_id": "5e2acc2b-7692-4c26-9c45-ee9ab111a48e",
|
|
257
|
+
"text": "journals.sagepub.com/home/msj",
|
|
258
|
+
"metadata": {
|
|
259
|
+
"coordinates": {
|
|
260
|
+
"points": [
|
|
261
|
+
[1297.8883056640625, 2094.94140625],
|
|
262
|
+
[1297.8883056640625, 2117.89599609375],
|
|
263
|
+
[1538.3895263671875, 2117.89599609375],
|
|
264
|
+
[1538.3895263671875, 2094.94140625]
|
|
265
|
+
],
|
|
266
|
+
"system": "PixelSpace",
|
|
267
|
+
"layout_width": 1654,
|
|
268
|
+
"layout_height": 2205
|
|
269
|
+
},
|
|
270
|
+
"filetype": "application/pdf",
|
|
271
|
+
"languages": ["eng"],
|
|
272
|
+
"page_number": 1,
|
|
273
|
+
"filename": "table-parse-case.pdf"
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
]
|