graphdb-workbench-tests 2.8.0-Test → 2.8.1-RC1

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.
Files changed (135) hide show
  1. package/cypress.config.js +4 -1
  2. package/fixtures/cluster/2-nodes-cluster-group-status-deleted.json +30 -0
  3. package/fixtures/cluster/2-nodes-cluster-group-status.json +30 -0
  4. package/fixtures/cluster/3-nodes-cluster-group-status-after-replace.json +44 -0
  5. package/fixtures/cluster/3-nodes-cluster-group-status-building-snapshot.json +4 -1
  6. package/fixtures/cluster/3-nodes-cluster-group-status-receiving-snapshot.json +4 -1
  7. package/fixtures/cluster/3-nodes-cluster-group-status-sending-snapshot.json +4 -1
  8. package/fixtures/cluster/3-nodes-cluster-group-status-waiting-for-snapshot.json +4 -1
  9. package/fixtures/cluster/3-nodes-cluster-group-status-with-tag.json +47 -0
  10. package/fixtures/cluster/3-nodes-cluster-group-status.json +12 -3
  11. package/fixtures/cluster/4-nodes-cluster-group-status.json +58 -0
  12. package/fixtures/cluster/cluster-config.json +1 -0
  13. package/fixtures/cluster/cluster-node-status.json +4 -1
  14. package/fixtures/cluster/no-cluster-group-status.json +2 -1
  15. package/fixtures/cluster/no-cluster-node-status.json +2 -1
  16. package/fixtures/cluster/save-cluster-configuration-response.json +10 -0
  17. package/fixtures/connectors/get-retrieval-connector.json +1 -1
  18. package/fixtures/connectors/get-ttyg-chatgpt-connectors.json +188 -0
  19. package/fixtures/locale-en.json +386 -103
  20. package/fixtures/remote-location/get-0-remote-locations.json +1 -2
  21. package/fixtures/remote-location/get-1-remote-locations.json +2 -4
  22. package/fixtures/remote-location/get-2-remote-locations.json +3 -6
  23. package/fixtures/remote-location/get-3-remote-locations.json +4 -8
  24. package/fixtures/remote-location/get-4-remote-locations.json +54 -0
  25. package/fixtures/remote-location/remote-location-status-in-cluster.json +1 -2
  26. package/fixtures/remote-location/remote-location-status-not-in-cluster.json +1 -2
  27. package/fixtures/remote-location/remote-locations-filter.json +1 -2
  28. package/fixtures/repositories/get-locations.json +5 -10
  29. package/fixtures/repositories/get-remote-and-local-repositories.json +34 -0
  30. package/fixtures/repositories/get-ttyg-repositories.json +28 -0
  31. package/fixtures/security/get-admin-user.json +22 -0
  32. package/fixtures/similarity/get-ttyg-similarity-connectors.json +46 -0
  33. package/fixtures/ttyg/agent/create-agent.json +2 -1
  34. package/fixtures/ttyg/agent/get-agent-defaults.json +42 -0
  35. package/fixtures/ttyg/agent/get-agent-list-after-deleted.json +1 -1
  36. package/fixtures/ttyg/agent/get-agent-list-new-agent.json +2 -73
  37. package/fixtures/ttyg/agent/get-agent-list.json +1 -1
  38. package/fixtures/ttyg/agent/get-agent.json +25 -0
  39. package/fixtures/ttyg/chats/ask-question.json +25 -0
  40. package/fixtures/ttyg/chats/create/create-chat-response.json +16 -0
  41. package/fixtures/ttyg/chats/create/get-chats-after-create.json +12 -0
  42. package/fixtures/ttyg/chats/create/get-chats-before-create.json +7 -0
  43. package/fixtures/ttyg/chats/explain-response-1.json +59 -0
  44. package/fixtures/ttyg/chats/explain-response-2.json +59 -0
  45. package/fixtures/ttyg/chats/get-chat.json +199 -0
  46. package/integration/cluster/cluster-configuration/cluster-configuration-multi-region.spec.js +97 -0
  47. package/integration/cluster/cluster-configuration/cluster-configuration-nodes.spec.js +70 -0
  48. package/integration/cluster/cluster-configuration/cluster-configuration-properties.spec.js +95 -0
  49. package/integration/cluster/cluster-configuration/cluster-configuration.spec.js +38 -0
  50. package/integration/cluster/cluster-legend.spec.js +1 -0
  51. package/integration/cluster/edit-cluster-nodes-modal.spec.js +425 -0
  52. package/integration/explore/graphs.overview.spec.js +4 -0
  53. package/integration/explore/{similariti-index-create.spec.js → similarity-index/similarity-index-create.spec.js} +4 -4
  54. package/integration/explore/{similarity-index.spec.js → similarity-index/similarity-index.spec.js} +6 -6
  55. package/integration/explore/{similarity.spec.js → similarity-index/similarity.spec.js} +7 -8
  56. package/integration/explore/visual-graph/visual.graph.spec.js +34 -35
  57. package/integration/home/cookie-policy.spec.js +83 -0
  58. package/integration/home/create-repository.spec.js +35 -0
  59. package/integration/home/documentation-link.spec.js +60 -0
  60. package/integration/home/google-analytics.spec.js +60 -0
  61. package/integration/home/language-selector.spec.js +19 -0
  62. package/integration/home/rdf-resource-search.spec.js +192 -0
  63. package/integration/home/view-resource-autocomplete.spec.js +52 -0
  64. package/integration/home/workbench.home.spec.js +1 -277
  65. package/integration/import/import-user-data-file-upload.spec.js +13 -0
  66. package/integration/import/import-user-data.spec.js +6 -1
  67. package/integration/import/import-view.spec.js +6 -1
  68. package/integration/license/license.spec.js +26 -0
  69. package/integration/repository/attach-remote-location.spec.js +94 -40
  70. package/integration/repository/repositories.spec.js +40 -7
  71. package/integration/setup/autocomplete.spec.js +21 -70
  72. package/integration/setup/{jdbc-create.spec.js → jdbc/jdbc-create.spec.js} +9 -10
  73. package/integration/setup/{jdbc.spec.js → jdbc/jdbc.spec.js} +56 -25
  74. package/integration/setup/my-settings.spec.js +13 -21
  75. package/integration/setup/namespaces.spec.js +132 -264
  76. package/integration/setup/plugins.spec.js +22 -51
  77. package/integration/setup/rdf-rank.spec.js +42 -138
  78. package/integration/ttyg/agent-list.spec.js +27 -25
  79. package/integration/ttyg/agent-select-menu.spec.js +18 -16
  80. package/integration/ttyg/chat-list.spec.js +72 -9
  81. package/integration/ttyg/chat-panel.spec.js +106 -10
  82. package/integration/ttyg/clone-agent.spec.js +8 -4
  83. package/integration/ttyg/create-agent.spec.js +303 -51
  84. package/integration/ttyg/create-chat.spec.js +68 -0
  85. package/integration/ttyg/delete-agent.spec.js +6 -5
  86. package/integration/ttyg/edit-agent.spec.js +16 -5
  87. package/integration/ttyg/ttyg-permission.spec.js +66 -0
  88. package/integration/ttyg/ttyg-view.spec.js +8 -4
  89. package/npm-shrinkwrap.json +215 -220
  90. package/package.json +5 -6
  91. package/steps/alert-dialog-steps.js +25 -0
  92. package/steps/cluster/cluster-configuration-steps.js +173 -5
  93. package/steps/cluster/cluster-page-steps.js +8 -0
  94. package/steps/cluster/custer-nodes-configuration-steps.js +107 -0
  95. package/steps/guides/guide-steps.js +1 -1
  96. package/steps/home-steps.js +48 -5
  97. package/steps/import/import-steps.js +11 -7
  98. package/steps/license-steps.js +25 -0
  99. package/steps/repositories/attach-repository-steps.js +33 -0
  100. package/steps/repository-steps.js +40 -11
  101. package/steps/setup/autocomplete-steps.js +59 -0
  102. package/steps/setup/namespace-steps.js +211 -0
  103. package/steps/setup/plugins-steps.js +37 -0
  104. package/steps/setup/rdf-rank-steps.js +106 -0
  105. package/steps/setup/settings-steps.js +17 -0
  106. package/steps/ttyg/chat-panel-steps.js +31 -6
  107. package/steps/ttyg/ttyg-agent-settings-modal.steps.js +82 -4
  108. package/steps/ttyg/ttyg-view-steps.js +77 -3
  109. package/steps/visual-graph-steps.js +29 -1
  110. package/steps/yasgui/yasqe-steps.js +3 -0
  111. package/stubs/cluster/cluster-stubs.js +162 -7
  112. package/stubs/cluster/remote-location-stubs.js +46 -0
  113. package/stubs/connector-stubs.js +24 -0
  114. package/stubs/environment-stubs.js +27 -0
  115. package/stubs/jdbc/jdbc-stubs.js +19 -0
  116. package/stubs/license-stubs.js +112 -0
  117. package/stubs/namespace-stubs.js +5 -0
  118. package/stubs/repositories/repositories-stubs.js +11 -8
  119. package/stubs/repositories-stub.js +15 -0
  120. package/stubs/security-stubs.js +29 -0
  121. package/stubs/setup/plugins-stubs.js +5 -0
  122. package/stubs/similarity-index-stubs.js +25 -0
  123. package/stubs/stubs.js +4 -0
  124. package/stubs/ttyg/ttyg-stubs.js +79 -40
  125. package/support/commands.js +2 -0
  126. package/support/index.js +18 -0
  127. package/support/security-command.js +25 -0
  128. package/support/settings-commands.js +4 -5
  129. package/support/user-commands.js +31 -0
  130. package/fixtures/ttyg/chats/get-chat-1.json +0 -43
  131. package/integration/cluster/cluster-management.spec.js +0 -220
  132. package/steps/autocomplete-steps.js +0 -10
  133. package/steps/cluster/add-remote-location-dialog-steps.js +0 -11
  134. package/steps/cluster/create-cluster-dialog-steps.js +0 -39
  135. package/steps/cluster/replace-nodes-dialog-steps.js +0 -39
@@ -9,7 +9,6 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": false
12
+ "defaultRepository": null
14
13
  }
15
14
  ]
@@ -9,8 +9,7 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": false
12
+ "defaultRepository": null
14
13
  },
15
14
  {
16
15
  "uri": "http://localhost:7201",
@@ -22,7 +21,6 @@
22
21
  "local": false,
23
22
  "system": false,
24
23
  "errorMsg": null,
25
- "defaultRepository": null,
26
- "isInCluster": false
24
+ "defaultRepository": null
27
25
  }
28
26
  ]
@@ -9,8 +9,7 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": false
12
+ "defaultRepository": null
14
13
  },
15
14
  {
16
15
  "uri": "http://localhost:7201",
@@ -22,8 +21,7 @@
22
21
  "local": false,
23
22
  "system": false,
24
23
  "errorMsg": null,
25
- "defaultRepository": null,
26
- "isInCluster": false
24
+ "defaultRepository": null
27
25
  },
28
26
  {
29
27
  "uri": "http://localhost:7202",
@@ -35,7 +33,6 @@
35
33
  "local": false,
36
34
  "system": false,
37
35
  "errorMsg": null,
38
- "defaultRepository": null,
39
- "isInCluster": false
36
+ "defaultRepository": null
40
37
  }
41
38
  ]
@@ -9,8 +9,7 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": true
12
+ "defaultRepository": null
14
13
  },
15
14
  {
16
15
  "uri": "http://localhost:7201",
@@ -22,8 +21,7 @@
22
21
  "local": false,
23
22
  "system": false,
24
23
  "errorMsg": null,
25
- "defaultRepository": null,
26
- "isInCluster": true
24
+ "defaultRepository": null
27
25
  },
28
26
  {
29
27
  "uri": "http://localhost:7202",
@@ -35,8 +33,7 @@
35
33
  "local": false,
36
34
  "system": false,
37
35
  "errorMsg": null,
38
- "defaultRepository": null,
39
- "isInCluster": true
36
+ "defaultRepository": null
40
37
  },
41
38
  {
42
39
  "uri": "http://localhost:7203",
@@ -48,7 +45,6 @@
48
45
  "local": false,
49
46
  "system": false,
50
47
  "errorMsg": null,
51
- "defaultRepository": null,
52
- "isInCluster": false
48
+ "defaultRepository": null
53
49
  }
54
50
  ]
@@ -0,0 +1,54 @@
1
+ [
2
+ {
3
+ "uri": "",
4
+ "label": "Local",
5
+ "username": null,
6
+ "password": null,
7
+ "authType": "none",
8
+ "active": true,
9
+ "local": true,
10
+ "system": true,
11
+ "errorMsg": null,
12
+ "defaultRepository": null,
13
+ "isInCluster": true
14
+ },
15
+ {
16
+ "uri": "http://pc-desktop:7203",
17
+ "label": "Remote (http://pc-desktop:7203)",
18
+ "username": "",
19
+ "password": "",
20
+ "authType": "signature",
21
+ "active": false,
22
+ "local": false,
23
+ "system": false,
24
+ "errorMsg": null,
25
+ "defaultRepository": null,
26
+ "isInCluster": false
27
+ },
28
+ {
29
+ "uri": "http://pc-desktop:7202",
30
+ "label": "Remote (http://pc-desktop:7202)",
31
+ "username": "",
32
+ "password": "",
33
+ "authType": "signature",
34
+ "active": false,
35
+ "local": false,
36
+ "system": false,
37
+ "errorMsg": null,
38
+ "defaultRepository": null,
39
+ "isInCluster": true
40
+ },
41
+ {
42
+ "uri": "http://pc-desktop:7233",
43
+ "label": "Remote (http://pc-desktop:7233)",
44
+ "username": "",
45
+ "password": "",
46
+ "authType": "signature",
47
+ "active": false,
48
+ "local": false,
49
+ "system": false,
50
+ "errorMsg": null,
51
+ "defaultRepository": null,
52
+ "isInCluster": false
53
+ }
54
+ ]
@@ -8,6 +8,5 @@
8
8
  "local": true,
9
9
  "system": true,
10
10
  "errorMsg": null,
11
- "defaultRepository": null,
12
- "isInCluster": true
11
+ "defaultRepository": null
13
12
  }
@@ -8,6 +8,5 @@
8
8
  "local": true,
9
9
  "system": true,
10
10
  "errorMsg": null,
11
- "defaultRepository": null,
12
- "isInCluster": false
11
+ "defaultRepository": null
13
12
  }
@@ -9,7 +9,6 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": false
12
+ "defaultRepository": null
14
13
  }
15
14
  ]
@@ -10,8 +10,7 @@
10
10
  "local": false,
11
11
  "system": false,
12
12
  "errorMsg": null,
13
- "defaultRepository": null,
14
- "isInCluster": false
13
+ "defaultRepository": null
15
14
  },
16
15
  {
17
16
  "uri": "http://localhost:7212",
@@ -24,8 +23,7 @@
24
23
  "local": false,
25
24
  "system": false,
26
25
  "errorMsg": "Cannot connect to location Connect to localhost:7212 [localhost/127.0.0.1] failed: Connection refused (Connection refused) (Connect to localhost:7212 [localhost/127.0.0.1] failed: Connection refused (Connection refused)).",
27
- "defaultRepository": null,
28
- "isInCluster": false
26
+ "defaultRepository": null
29
27
  },
30
28
  {
31
29
  "uri": "",
@@ -38,8 +36,7 @@
38
36
  "local": true,
39
37
  "system": true,
40
38
  "errorMsg": null,
41
- "defaultRepository": null,
42
- "isInCluster": false
39
+ "defaultRepository": null
43
40
  },
44
41
  {
45
42
  "uri": "http://localhost:7201",
@@ -52,8 +49,7 @@
52
49
  "local": false,
53
50
  "system": false,
54
51
  "errorMsg": null,
55
- "defaultRepository": null,
56
- "isInCluster": false
52
+ "defaultRepository": null
57
53
  },
58
54
  {
59
55
  "uri": "http://localhost:7202",
@@ -66,7 +62,6 @@
66
62
  "local": false,
67
63
  "system": false,
68
64
  "errorMsg": null,
69
- "defaultRepository": null,
70
- "isInCluster": false
65
+ "defaultRepository": null
71
66
  }
72
67
  ]
@@ -0,0 +1,34 @@
1
+ {
2
+ "": [
3
+ {
4
+ "id": "test",
5
+ "title": "",
6
+ "uri": "http://localhost:8080/graphdb/repositories/test",
7
+ "externalUrl": "http://boyantonchev:9000/repositories/test",
8
+ "local": true,
9
+ "type": "graphdb",
10
+ "sesameType": "graphdb:SailRepository",
11
+ "location": "",
12
+ "readable": true,
13
+ "writable": true,
14
+ "unsupported": false,
15
+ "state": "RUNNING"
16
+ }
17
+ ],
18
+ "http://localhost:7201": [
19
+ {
20
+ "id": "movies",
21
+ "title": "",
22
+ "uri": "http://localhost:7202/repositories/movies",
23
+ "externalUrl": "http://localhost:7202/repositories/movies",
24
+ "local": false,
25
+ "type": "graphdb",
26
+ "sesameType": "graphdb:SailRepository",
27
+ "location": "http://localhost:7202",
28
+ "readable": true,
29
+ "writable": true,
30
+ "unsupported": false,
31
+ "state": "RUNNING"
32
+ }
33
+ ]
34
+ }
@@ -41,6 +41,34 @@
41
41
  "writable": true,
42
42
  "unsupported": false,
43
43
  "state": "INACTIVE"
44
+ },
45
+ {
46
+ "id": "Fedx_repository",
47
+ "title": "",
48
+ "uri": "http://localhost:8080/graphdb/repositories/Fedx_repository",
49
+ "externalUrl": "http://boyantonchev:9000/repositories/Fedx_repository",
50
+ "local": true,
51
+ "type": "fedx",
52
+ "sesameType": "graphdb:FedXRepository",
53
+ "location": "",
54
+ "readable": true,
55
+ "writable": true,
56
+ "unsupported": false,
57
+ "state": "INACTIVE"
58
+ },
59
+ {
60
+ "id": "Ontop_repository",
61
+ "title": "",
62
+ "uri": "http://localhost:8080/graphdb/repositories/Fedx_repository",
63
+ "externalUrl": "http://boyantonchev:9000/repositories/Fedx_repository",
64
+ "local": true,
65
+ "type": "ontop",
66
+ "sesameType": "graphdb:FedXRepository",
67
+ "location": "",
68
+ "readable": true,
69
+ "writable": true,
70
+ "unsupported": false,
71
+ "state": "INACTIVE"
44
72
  }
45
73
  ]
46
74
  }
@@ -0,0 +1,22 @@
1
+ {
2
+ "username": "admin",
3
+ "password": "",
4
+ "grantedAuthorities": [
5
+ "ROLE_ADMIN"
6
+ ],
7
+ "appSettings": {
8
+ "COOKIE_CONSENT": {
9
+ "policyAccepted": true,
10
+ "statistic": true,
11
+ "thirdParty": true,
12
+ "updatedAt": 1730269436033
13
+ },
14
+ "DEFAULT_SAMEAS": true,
15
+ "DEFAULT_INFERENCE": true,
16
+ "EXECUTE_COUNT": true,
17
+ "IGNORE_SHARED_QUERIES": false,
18
+ "DEFAULT_VIS_GRAPH_SCHEMA": true
19
+ },
20
+ "dateCreated": 1730269436033,
21
+ "gptThreads": []
22
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "starwars": [
3
+ {
4
+ "name": "similarity_index_starwars_one",
5
+ "options": "-termweight idf",
6
+ "selectQuery": "SELECT ?documentID ?documentText {\n\t?documentID ?p ?documentText .\n\tfilter(isLiteral(?documentText))\n}",
7
+ "searchQuery": "PREFIX :<http://www.ontotext.com/graphdb/similarity/>\nPREFIX similarity-index:<http://www.ontotext.com/graphdb/similarity/instance/>\nPREFIX pubo: <http://ontology.ontotext.com/publishing#>\n\nSELECT ?documentID ?score {\n ?search a ?index ;\n ?searchType ?query;\n :searchParameters ?parameters;\n ?resultType ?result .\n ?result :value ?documentID ;\n :score ?score.\n}",
8
+ "analogicalQuery": "",
9
+ "stopList": null,
10
+ "analyzer": "org.apache.lucene.analysis.en.EnglishAnalyzer",
11
+ "status": "BUILT",
12
+ "infer": true,
13
+ "sameAs": true,
14
+ "type": "text"
15
+ },
16
+ {
17
+ "name": "similarity_index_starwars_two",
18
+ "options": "-termweight idf",
19
+ "selectQuery": "SELECT ?documentID ?documentText {\n\t?documentID ?p ?documentText .\n\tfilter(isLiteral(?documentText))\n}",
20
+ "searchQuery": "PREFIX :<http://www.ontotext.com/graphdb/similarity/>\nPREFIX similarity-index:<http://www.ontotext.com/graphdb/similarity/instance/>\nPREFIX pubo: <http://ontology.ontotext.com/publishing#>\n\nSELECT ?documentID ?score {\n ?search a ?index ;\n ?searchType ?query;\n :searchParameters ?parameters;\n ?resultType ?result .\n ?result :value ?documentID ;\n :score ?score.\n}",
21
+ "analogicalQuery": "",
22
+ "stopList": null,
23
+ "analyzer": "org.apache.lucene.analysis.en.EnglishAnalyzer",
24
+ "status": "BUILT",
25
+ "infer": true,
26
+ "sameAs": true,
27
+ "type": "text"
28
+ }
29
+ ],
30
+ "biomarkers": [
31
+ {
32
+ "name": "similarity_index_biomarkers_one",
33
+ "options": "-termweight idf",
34
+ "selectQuery": "SELECT ?documentID ?documentText {\n\t?documentID ?p ?documentText .\n\tfilter(isLiteral(?documentText))\n}",
35
+ "searchQuery": "PREFIX :<http://www.ontotext.com/graphdb/similarity/>\nPREFIX similarity-index:<http://www.ontotext.com/graphdb/similarity/instance/>\nPREFIX pubo: <http://ontology.ontotext.com/publishing#>\n\nSELECT ?documentID ?score {\n ?search a ?index ;\n ?searchType ?query;\n :searchParameters ?parameters;\n ?resultType ?result .\n ?result :value ?documentID ;\n :score ?score.\n}",
36
+ "analogicalQuery": "",
37
+ "stopList": null,
38
+ "analyzer": "org.apache.lucene.analysis.en.EnglishAnalyzer",
39
+ "status": "BUILT",
40
+ "infer": true,
41
+ "sameAs": true,
42
+ "type": "text"
43
+ }
44
+ ],
45
+ "ttyg-repo-1725518186812": []
46
+ }
@@ -13,7 +13,8 @@
13
13
  "assistantExtractionMethods": [
14
14
  {
15
15
  "method": "sparql_search",
16
- "sparqlQuery": "select ?s ?p ?o where {?s ?p ?o .}"
16
+ "sparqlQuery": "select ?s ?p ?o where {?s ?p ?o .}",
17
+ "addMissingNamespaces": true
17
18
  }
18
19
  ]
19
20
  }
@@ -0,0 +1,42 @@
1
+ {
2
+ "id": "id",
3
+ "name": "Quadro",
4
+ "model": "gpt-4o",
5
+ "temperature": 0.7,
6
+ "topP": 1.0,
7
+ "seed": 0,
8
+ "repositoryId": "test-repository",
9
+ "instructions": {
10
+ "systemInstruction": "",
11
+ "userInstruction": "If you need to write a SPARQL query, use only the classes and properties provided in the schema and don't invent or guess any. Always try to return human-readable names or labels and not only the IRIs. If SPARQL fails to provide the necessary information you can try another tool too."
12
+ },
13
+ "assistantExtractionMethods": [
14
+ {
15
+ "method": "sparql_search",
16
+ "ontologyGraph": "http://example.com",
17
+ "sparqlQuery": "CONSTRUCT {?s ?p ?o} WHERE {GRAPH <http://example.org/ontology> {?s ?p ?o .}}",
18
+ "addMissingNamespaces": false
19
+ },
20
+ {
21
+ "method": "fts_search",
22
+ "maxNumberOfTriplesPerCall": 0
23
+ },
24
+ {
25
+ "method": "similarity_search",
26
+ "similarityIndex": "similarity-index",
27
+ "similarityIndexThreshold": 0.6,
28
+ "maxNumberOfTriplesPerCall": 0
29
+ },
30
+ {
31
+ "method": "retrieval_search",
32
+ "retrievalConnectorInstance": "retrieval-connector",
33
+ "queryTemplate": "{\"query\": \"string\"}",
34
+ "maxNumberOfTriplesPerCall": 0
35
+ }
36
+ ],
37
+ "additionalExtractionMethods": [
38
+ {
39
+ "method": "iri_discovery_search"
40
+ }
41
+ ]
42
+ }
@@ -6,7 +6,7 @@
6
6
  "temperature": 0.0,
7
7
  "topP": 0.0,
8
8
  "seed": null,
9
- "repositoryId": null,
9
+ "repositoryId": "Not existing repo",
10
10
  "instructions": {
11
11
  "systemInstruction": "string\n\nstring",
12
12
  "userInstruction": "string"
@@ -14,79 +14,8 @@
14
14
  "assistantExtractionMethods": [
15
15
  {
16
16
  "method": "sparql_search",
17
- "sparqlQuery": "select ?s ?p ?o where {?s ?p ?o .}"
18
- }
19
- ]
20
- },
21
- {
22
- "id": "asst_gAPcrHQQ9ZIxD5eXWH2BNFfo",
23
- "name": "agent-1",
24
- "model": "gpt-4o",
25
- "temperature": 0.0,
26
- "topP": 0.0,
27
- "seed": null,
28
- "repositoryId": "starwars",
29
- "instructions": {
30
- "systemInstruction": "",
31
- "userInstruction": ""
32
- },
33
- "assistantExtractionMethods": [
34
- {
35
- "ftsMethod": "fts_search"
36
- }
37
- ]
38
- },
39
- {
40
- "id": "asst_qMyCpCBmqxV9I2B8UoMfFzc5",
41
- "name": "agent-2",
42
- "model": "gpt-4o",
43
- "temperature": 0.0,
44
- "topP": 0.0,
45
- "seed": null,
46
- "repositoryId": null,
47
- "instructions": {
48
- "systemInstruction": "string\n\nstring",
49
- "userInstruction": "string"
50
- },
51
- "assistantExtractionMethods": [
52
- {
53
- "ftsMethod": "fts_search"
54
- }
55
- ]
56
- },
57
- {
58
- "id": "asst_Cr0RxobrY07WpOvvyQilEWMI",
59
- "name": "Databricks-general-unbiased",
60
- "model": "gpt-4o-2024-08-06",
61
- "temperature": 1.0,
62
- "topP": 1.0,
63
- "seed": null,
64
- "repositoryId": "starwars",
65
- "instructions": {
66
- "systemInstruction": "You are helpful assistant in discovering information regarding diagnostic biomarkers.",
67
- "userInstruction": null
68
- },
69
- "assistantExtractionMethods": [
70
- {
71
- "ftsMethod": "fts_search"
72
- }
73
- ]
74
- },
75
- {
76
- "id": "asst_5GxNYTdaOh7Tl6lLl6Pya2aH",
77
- "name": "Databricks-biomarkers",
78
- "model": "gpt-3.5-turbo-0125",
79
- "temperature": 1.0,
80
- "topP": 1.0,
81
- "seed": null,
82
- "repositoryId": "biomarkers",
83
- "instructions": {
84
- "systemInstruction": "You're a helpful assistant in discovering new diagnostic biomarkers for given diseases. I'll submit a set of publication abstracts discussing given disease and your task is to find in the abstracts any potential new biomarkers which are not yet listed in the appropriate databases. Each abstract is preceded by identifier - its PubMed id called for short PMID. \n\nReturn the set of biomarkers listed one per row, each marker followed by the | and PMID of the respective abstract if was mentioned in.\n\nExample: \nInput: 36418457\t[Amyotrophic lateral sclerosis (ALS) is a genetically and phenotypically heterogeneous disease results in the loss of motor neurons. Mounting information points to involvement of other systems including cognitive impairment. However, neither the valid biomarker for diagnosis nor effective therapeutic intervention is available for ALS. The present study is aimed at identifying potentially genetic biomarker that improves the diagnosis and treatment of ALS patients based on the data of the Gene Expression Omnibus. We retrieved datasets and conducted a weighted gene co-expression network analysis (WGCNA) to identify ALS-related co-expression genes. Functional enrichment analysis was performed to determine the features and pathways of the main modules. We then constructed an ALS-related model using the least absolute shrinkage and selection operator (LASSO) regression analysis and verified the model by the receiver operating characteristic (ROC) curve. Besides we screened the non-preserved gene modules in FTD and ALS-mimic disorders to distinct ALS-related genes from disorders with overlapping genes and features. Altogether, 4198 common genes between datasets with the most variation were analyzed and 16 distinct modules were identified through WGCNA. Blue module had the most correlation with ALS and functionally enriched in pathways of neurodegeneration-multiple diseases', 'amyotrophic lateral sclerosis', and 'endocytosis' KEGG terms. Further, some of other modules related to ALS were enriched in 'autophagy' and 'amyotrophic lateral sclerosis'. The 30 top of hub genes were recruited to a LASSO regression model and 5 genes (BCLAF1, GNA13, ARL6IP5, ARGLU1, and YPEL5) were identified as potentially diagnostic ALS biomarkers with validating of the ROC curve and AUC value.]\n\nYour response: BCLAF1|36418457\nGNA13|36418457\nARL6IP5|36418457\nARGLU1|36418457\nYPEL5|36418457",
85
- "userInstruction": null
86
- },
87
- "assistantExtractionMethods": [
88
- {
89
- "ftsMethod": "fts_search"
17
+ "sparqlQuery": "select ?s ?p ?o where {?s ?p ?o .}",
18
+ "addMissingNamespaces": true
90
19
  }
91
20
  ]
92
21
  }
@@ -25,7 +25,7 @@
25
25
  "temperature": 0.0,
26
26
  "topP": 0.0,
27
27
  "seed": null,
28
- "repositoryId": null,
28
+ "repositoryId": "Not existing repo",
29
29
  "instructions": {
30
30
  "systemInstruction": "string\n\nstring",
31
31
  "userInstruction": "string"
@@ -0,0 +1,25 @@
1
+ {
2
+ "id": "asst_G8EtHyT8kAGeDmCa3Nh6y74v",
3
+ "name": "Test agent",
4
+ "model": "gpt-4o",
5
+ "temperature": 0.7,
6
+ "topP": 1.0,
7
+ "repositoryId": "starwars",
8
+ "instructions": {
9
+ "systemInstruction": null,
10
+ "userInstruction": null
11
+ },
12
+ "assistantExtractionMethods": [
13
+ {
14
+ "method": "sparql_search",
15
+ "ontologyGraph": null,
16
+ "sparqlQuery": "CONSTRUCT {\n ?s ?p ?o\n} WHERE {\n GRAPH <http://example.com/sw-ont> {\n ?s ?p ?o\n }\n}",
17
+ "addMissingNamespaces": false
18
+ }
19
+ ],
20
+ "additionalExtractionMethods": [
21
+ {
22
+ "method": "iri_discovery_search"
23
+ }
24
+ ]
25
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "id": "requestBody.conversationId",
3
+ "name": "Han Solo is a character",
4
+ "timestamp": 43523452,
5
+ "messages": [
6
+ {
7
+ "id": "msg_Bn07kVDCYT1qmgu1G7Zw0KNeс_",
8
+ "conversationId": "requestBody.conversationId",
9
+ "role": "assistant",
10
+ "agentId": "requestBody.agentId",
11
+ "message": "Reply to '${requestBody.question}' Second`",
12
+ "timestamp": 53425243523,
13
+ "name": null
14
+ },
15
+ {
16
+ "id": "msg_Bn07kVDCYT1qmgu1G7Zw0KNe_",
17
+ "conversationId": "requestBody.conversationId",
18
+ "role": "assistant",
19
+ "agentId": "requestBody.agentId",
20
+ "message": "Reply to '${requestBody.question}",
21
+ "timestamp": 23432424242,
22
+ "name": null
23
+ }
24
+ ]
25
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "id": "thread_new_created_chat",
3
+ "name": "New chat of Han Solo is a character",
4
+ "timestamp": "creationDate",
5
+ "messages": [
6
+ {
7
+ "id": "msg_Bn07kVDCYT1qmgu1G7Zw0KNeс_",
8
+ "conversationId": "thread_new_created_chat",
9
+ "role": "assistant",
10
+ "agentId": "asst_gAPcrHQQ9ZIxD5eXWH2BNFfo",
11
+ "message": "Han Solo is a character...",
12
+ "timestamp": "creationDate",
13
+ "name": null
14
+ }
15
+ ]
16
+ }
@@ -0,0 +1,12 @@
1
+ [
2
+ {
3
+ "id": "thread_new_created_chat",
4
+ "name": "New chat of Han Solo is a character",
5
+ "timestamp": "1725875483"
6
+ },
7
+ {
8
+ "id": "thread_jdQBvbkaU6JPoO48oQaL76dC",
9
+ "name": "Han Solo is a fictional character in the...",
10
+ "timestamp": "1725875483"
11
+ }
12
+ ]
@@ -0,0 +1,7 @@
1
+ [
2
+ {
3
+ "id": "thread_jdQBvbkaU6JPoO48oQaL76dC",
4
+ "name": "Han Solo is a fictional character in the...",
5
+ "timestamp": "1725875483"
6
+ }
7
+ ]