graphdb-workbench-tests 2.7.4 → 2.8.0-TR2

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 (50) hide show
  1. package/fixtures/connectors/get-connectors.json +8 -0
  2. package/fixtures/connectors/get-retrieval-connector-0.json +1 -0
  3. package/fixtures/connectors/get-retrieval-connector.json +29 -0
  4. package/fixtures/locale-en.json +282 -21
  5. package/fixtures/namespaces/get-repository-starwars-namespaces.json +252 -0
  6. package/fixtures/repositories/get-locations.json +72 -0
  7. package/fixtures/repositories/get-repositories.json +106 -0
  8. package/fixtures/repositories/get-repository-config-starwars-disabled-fts.json +201 -0
  9. package/fixtures/repositories/get-repository-config-starwars-enabled-fts.json +201 -0
  10. package/fixtures/repositories/get-ttyg-repositories.json +46 -0
  11. package/fixtures/similarity/get-similarity-indexes-0.json +1 -0
  12. package/fixtures/similarity/get-similarity-indexes.json +15 -0
  13. package/fixtures/ttyg/agent/create-agent.json +19 -0
  14. package/fixtures/ttyg/agent/get-agent-list-0.json +1 -0
  15. package/fixtures/ttyg/agent/get-agent-list-after-deleted.json +56 -0
  16. package/fixtures/ttyg/agent/get-agent-list-new-agent.json +93 -0
  17. package/fixtures/ttyg/agent/get-agent-list.json +74 -0
  18. package/fixtures/ttyg/chats/deleted-chat.json +3 -0
  19. package/fixtures/ttyg/chats/get-chat-1.json +34 -0
  20. package/fixtures/ttyg/chats/get-chat-list-0.json +1 -0
  21. package/fixtures/ttyg/chats/get-chat-list-with-deleted-chat.json +17 -0
  22. package/fixtures/ttyg/chats/get-chat-list-with-renamed-chat.json +22 -0
  23. package/fixtures/ttyg/chats/get-chat-list.json +22 -0
  24. package/fixtures/ttyg/chats/renamed-chat.json +4 -0
  25. package/integration/import/import-user-data.spec.js +2 -1
  26. package/integration/repository/attach-remote-location.spec.js +154 -0
  27. package/integration/repository/ontop-repository.spec.js +87 -1
  28. package/integration/repository/repositories.spec.js +4 -13
  29. package/integration/ttyg/agent-list.spec.js +69 -0
  30. package/integration/ttyg/agent-select-menu.spec.js +139 -0
  31. package/integration/ttyg/chat-list.spec.js +158 -0
  32. package/integration/ttyg/chat-panel.spec.js +79 -0
  33. package/integration/ttyg/create-agent.spec.js +348 -0
  34. package/integration/ttyg/delete-agent.spec.js +50 -0
  35. package/integration/ttyg/ttyg-view.spec.js +72 -0
  36. package/npm-shrinkwrap.json +2 -2
  37. package/package.json +1 -1
  38. package/steps/import/import-steps.js +0 -4
  39. package/steps/modal-dialog-steps.js +8 -0
  40. package/steps/ontop-repository-steps.js +26 -0
  41. package/steps/repositories/attach-repository-steps.js +85 -0
  42. package/steps/repository-steps.js +33 -0
  43. package/steps/ttyg/chat-panel-steps.js +37 -0
  44. package/steps/ttyg/ttyg-agent-settings-modal.steps.js +363 -0
  45. package/steps/ttyg/ttyg-view-steps.js +253 -0
  46. package/steps/window-steps.js +5 -0
  47. package/stubs/connector-stubs.js +15 -0
  48. package/stubs/repositories/repositories-stubs.js +138 -0
  49. package/stubs/similarity-index-stubs.js +7 -0
  50. package/stubs/ttyg/ttyg-stubs.js +106 -0
@@ -0,0 +1,72 @@
1
+ [
2
+ {
3
+ "uri": "http://local",
4
+ "label": "Remote Ontopic Instance (http://local)",
5
+ "username": "username",
6
+ "password": "password",
7
+ "authType": "basic",
8
+ "locationType": "ONTOPIC",
9
+ "active": false,
10
+ "local": false,
11
+ "system": false,
12
+ "errorMsg": null,
13
+ "defaultRepository": null,
14
+ "isInCluster": false
15
+ },
16
+ {
17
+ "uri": "http://localhost:7212",
18
+ "label": "Remote (http://localhost:7212)",
19
+ "username": null,
20
+ "password": null,
21
+ "authType": "none",
22
+ "locationType": "GDB",
23
+ "active": false,
24
+ "local": false,
25
+ "system": false,
26
+ "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
29
+ },
30
+ {
31
+ "uri": "",
32
+ "label": "Local",
33
+ "username": null,
34
+ "password": null,
35
+ "authType": "none",
36
+ "locationType": null,
37
+ "active": true,
38
+ "local": true,
39
+ "system": true,
40
+ "errorMsg": null,
41
+ "defaultRepository": null,
42
+ "isInCluster": false
43
+ },
44
+ {
45
+ "uri": "http://localhost:7201",
46
+ "label": "Remote (http://localhost:7201)",
47
+ "username": null,
48
+ "password": null,
49
+ "authType": "none",
50
+ "locationType": "GDB",
51
+ "active": false,
52
+ "local": false,
53
+ "system": false,
54
+ "errorMsg": null,
55
+ "defaultRepository": null,
56
+ "isInCluster": false
57
+ },
58
+ {
59
+ "uri": "http://localhost:7202",
60
+ "label": "Remote (http://localhost:7202)",
61
+ "username": null,
62
+ "password": null,
63
+ "authType": "none",
64
+ "locationType": "GDB",
65
+ "active": false,
66
+ "local": false,
67
+ "system": false,
68
+ "errorMsg": null,
69
+ "defaultRepository": null,
70
+ "isInCluster": false
71
+ }
72
+ ]
@@ -0,0 +1,106 @@
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://ghh": [],
19
+ "http://localhost:7201": [],
20
+ "http://localhost:7202": [
21
+ {
22
+ "id": "movies",
23
+ "title": "",
24
+ "uri": "http://localhost:7202/repositories/movies",
25
+ "externalUrl": "http://localhost:7202/repositories/movies",
26
+ "local": false,
27
+ "type": "graphdb",
28
+ "sesameType": "graphdb:SailRepository",
29
+ "location": "http://localhost:7202",
30
+ "readable": true,
31
+ "writable": true,
32
+ "unsupported": false,
33
+ "state": "RUNNING"
34
+ },
35
+ {
36
+ "id": "configurations",
37
+ "title": "",
38
+ "uri": "http://localhost:7202/repositories/configurations",
39
+ "externalUrl": "http://localhost:7202/repositories/configurations",
40
+ "local": false,
41
+ "type": "graphdb",
42
+ "sesameType": "graphdb:SailRepository",
43
+ "location": "http://localhost:7202",
44
+ "readable": true,
45
+ "writable": true,
46
+ "unsupported": false,
47
+ "state": "RUNNING"
48
+ },
49
+ {
50
+ "id": "schedules",
51
+ "title": "",
52
+ "uri": "http://localhost:7202/repositories/schedules",
53
+ "externalUrl": "http://localhost:7202/repositories/schedules",
54
+ "local": false,
55
+ "type": "graphdb",
56
+ "sesameType": "graphdb:SailRepository",
57
+ "location": "http://localhost:7202",
58
+ "readable": true,
59
+ "writable": true,
60
+ "unsupported": false,
61
+ "state": "RUNNING"
62
+ },
63
+ {
64
+ "id": "statuses",
65
+ "title": "",
66
+ "uri": "http://localhost:7202/repositories/statuses",
67
+ "externalUrl": "http://localhost:7202/repositories/statuses",
68
+ "local": false,
69
+ "type": "graphdb",
70
+ "sesameType": "graphdb:SailRepository",
71
+ "location": "http://localhost:7202",
72
+ "readable": true,
73
+ "writable": true,
74
+ "unsupported": false,
75
+ "state": "RUNNING"
76
+ },
77
+ {
78
+ "id": "home-repository-1716184222365",
79
+ "title": "",
80
+ "uri": "http://localhost:7202/repositories/home-repository-1716184222365",
81
+ "externalUrl": "http://localhost:7202/repositories/home-repository-1716184222365",
82
+ "local": false,
83
+ "type": "graphdb",
84
+ "sesameType": "graphdb:SailRepository",
85
+ "location": "http://localhost:7202",
86
+ "readable": true,
87
+ "writable": true,
88
+ "unsupported": false,
89
+ "state": "RUNNING"
90
+ },
91
+ {
92
+ "id": "repository-1716184200859",
93
+ "title": "",
94
+ "uri": "http://localhost:7202/repositories/repository-1716184200859",
95
+ "externalUrl": "http://localhost:7202/repositories/repository-1716184200859",
96
+ "local": false,
97
+ "type": "graphdb",
98
+ "sesameType": "graphdb:SailRepository",
99
+ "location": "http://localhost:7202",
100
+ "readable": true,
101
+ "writable": true,
102
+ "unsupported": false,
103
+ "state": "RUNNING"
104
+ }
105
+ ]
106
+ }
@@ -0,0 +1,201 @@
1
+ {
2
+ "id":"starwars",
3
+ "title":"",
4
+ "type":"graphdb",
5
+ "sesameType":"graphdb:SailRepository",
6
+ "location":"",
7
+ "params":{
8
+ "queryTimeout":{
9
+ "name":"queryTimeout",
10
+ "label":"Query timeout (seconds)",
11
+ "value":"0"
12
+ },
13
+ "cacheSelectNodes":{
14
+ "name":"cacheSelectNodes",
15
+ "label":"Cache select nodes",
16
+ "value":"true"
17
+ },
18
+ "rdfsSubClassReasoning":{
19
+ "name":"rdfsSubClassReasoning",
20
+ "label":"RDFS subClass reasoning",
21
+ "value":"true"
22
+ },
23
+ "validationEnabled":{
24
+ "name":"validationEnabled",
25
+ "label":"Enable the SHACL validation",
26
+ "value":"true"
27
+ },
28
+ "ftsStringLiteralsIndex":{
29
+ "name":"ftsStringLiteralsIndex",
30
+ "label":"FTS index for xsd:string literals",
31
+ "value":"default"
32
+ },
33
+ "shapesGraph":{
34
+ "name":"shapesGraph",
35
+ "label":"Named graphs for SHACL shapes",
36
+ "value":"http://rdf4j.org/schema/rdf4j#SHACLShapeGraph"
37
+ },
38
+ "parallelValidation":{
39
+ "name":"parallelValidation",
40
+ "label":"Run parallel validation",
41
+ "value":"true"
42
+ },
43
+ "checkForInconsistencies":{
44
+ "name":"checkForInconsistencies",
45
+ "label":"Enable consistency checks",
46
+ "value":"false"
47
+ },
48
+ "performanceLogging":{
49
+ "name":"performanceLogging",
50
+ "label":"Log the execution time per shape",
51
+ "value":"false"
52
+ },
53
+ "disableSameAs":{
54
+ "name":"disableSameAs",
55
+ "label":"Disable owl:sameAs",
56
+ "value":"true"
57
+ },
58
+ "ftsIrisIndex":{
59
+ "name":"ftsIrisIndex",
60
+ "label":"FTS index for full-text indexing of IRIs",
61
+ "value":"none"
62
+ },
63
+ "entityIndexSize":{
64
+ "name":"entityIndexSize",
65
+ "label":"Entity index size",
66
+ "value":"10000000"
67
+ },
68
+ "dashDataShapes":{
69
+ "name":"dashDataShapes",
70
+ "label":"DASH data shapes extensions",
71
+ "value":"true"
72
+ },
73
+ "queryLimitResults":{
74
+ "name":"queryLimitResults",
75
+ "label":"Limit query results",
76
+ "value":"0"
77
+ },
78
+ "throwQueryEvaluationExceptionOnTimeout":{
79
+ "name":"throwQueryEvaluationExceptionOnTimeout",
80
+ "label":"Throw exception on query timeout",
81
+ "value":"false"
82
+ },
83
+ "member":{
84
+ "name":"member",
85
+ "label":"FedX repo members",
86
+ "value":[
87
+
88
+ ]
89
+ },
90
+ "storageFolder":{
91
+ "name":"storageFolder",
92
+ "label":"Storage folder",
93
+ "value":"storage"
94
+ },
95
+ "validationResultsLimitPerConstraint":{
96
+ "name":"validationResultsLimitPerConstraint",
97
+ "label":"Validation results limit per constraint",
98
+ "value":"1000"
99
+ },
100
+ "enablePredicateList":{
101
+ "name":"enablePredicateList",
102
+ "label":"Enable predicate list index",
103
+ "value":"true"
104
+ },
105
+ "transactionalValidationLimit":{
106
+ "name":"transactionalValidationLimit",
107
+ "label":"Transactional validation limit",
108
+ "value":"500000"
109
+ },
110
+ "ftsIndexes":{
111
+ "name":"ftsIndexes",
112
+ "label":"FTS indexes to build (comma delimited)",
113
+ "value":"default, iri"
114
+ },
115
+ "logValidationPlans":{
116
+ "name":"logValidationPlans",
117
+ "label":"Log the executed validation plans",
118
+ "value":"false"
119
+ },
120
+ "imports":{
121
+ "name":"imports",
122
+ "label":"Imported RDF files(';' delimited)",
123
+ "value":""
124
+ },
125
+ "isShacl":{
126
+ "name":"isShacl",
127
+ "label":"Enable SHACL validation",
128
+ "value":"false"
129
+ },
130
+ "inMemoryLiteralProperties":{
131
+ "name":"inMemoryLiteralProperties",
132
+ "label":"Cache literal language tags",
133
+ "value":"true"
134
+ },
135
+ "ruleset":{
136
+ "name":"ruleset",
137
+ "label":"Ruleset",
138
+ "value":"rdfsplus-optimized"
139
+ },
140
+ "readOnly":{
141
+ "name":"readOnly",
142
+ "label":"Read-only",
143
+ "value":"false"
144
+ },
145
+ "enableLiteralIndex":{
146
+ "name":"enableLiteralIndex",
147
+ "label":"Enable literal index",
148
+ "value":"true"
149
+ },
150
+ "enableFtsIndex":{
151
+ "name":"enableFtsIndex",
152
+ "label":"Enable full-text search (FTS) index",
153
+ "value":"false"
154
+ },
155
+ "defaultNS":{
156
+ "name":"defaultNS",
157
+ "label":"Default namespaces for imports(';' delimited)",
158
+ "value":""
159
+ },
160
+ "enableContextIndex":{
161
+ "name":"enableContextIndex",
162
+ "label":"Enable context index",
163
+ "value":"false"
164
+ },
165
+ "baseURL":{
166
+ "name":"baseURL",
167
+ "label":"Base URL",
168
+ "value":"http://example.org/owlim#"
169
+ },
170
+ "logValidationViolations":{
171
+ "name":"logValidationViolations",
172
+ "label":"Log validation violations",
173
+ "value":"false"
174
+ },
175
+ "globalLogValidationExecution":{
176
+ "name":"globalLogValidationExecution",
177
+ "label":"Log every execution step of the SHACL validation",
178
+ "value":"false"
179
+ },
180
+ "entityIdSize":{
181
+ "name":"entityIdSize",
182
+ "label":"Entity ID size",
183
+ "value":"32"
184
+ },
185
+ "repositoryType":{
186
+ "name":"repositoryType",
187
+ "label":"Repository type",
188
+ "value":"file-repository"
189
+ },
190
+ "eclipseRdf4jShaclExtensions":{
191
+ "name":"eclipseRdf4jShaclExtensions",
192
+ "label":"RDF4J SHACL extensions",
193
+ "value":"true"
194
+ },
195
+ "validationResultsLimitTotal":{
196
+ "name":"validationResultsLimitTotal",
197
+ "label":"Validation results limit total",
198
+ "value":"1000000"
199
+ }
200
+ }
201
+ }
@@ -0,0 +1,201 @@
1
+ {
2
+ "id":"starwars",
3
+ "title":"",
4
+ "type":"graphdb",
5
+ "sesameType":"graphdb:SailRepository",
6
+ "location":"",
7
+ "params":{
8
+ "queryTimeout":{
9
+ "name":"queryTimeout",
10
+ "label":"Query timeout (seconds)",
11
+ "value":"0"
12
+ },
13
+ "cacheSelectNodes":{
14
+ "name":"cacheSelectNodes",
15
+ "label":"Cache select nodes",
16
+ "value":"true"
17
+ },
18
+ "rdfsSubClassReasoning":{
19
+ "name":"rdfsSubClassReasoning",
20
+ "label":"RDFS subClass reasoning",
21
+ "value":"true"
22
+ },
23
+ "validationEnabled":{
24
+ "name":"validationEnabled",
25
+ "label":"Enable the SHACL validation",
26
+ "value":"true"
27
+ },
28
+ "ftsStringLiteralsIndex":{
29
+ "name":"ftsStringLiteralsIndex",
30
+ "label":"FTS index for xsd:string literals",
31
+ "value":"default"
32
+ },
33
+ "shapesGraph":{
34
+ "name":"shapesGraph",
35
+ "label":"Named graphs for SHACL shapes",
36
+ "value":"http://rdf4j.org/schema/rdf4j#SHACLShapeGraph"
37
+ },
38
+ "parallelValidation":{
39
+ "name":"parallelValidation",
40
+ "label":"Run parallel validation",
41
+ "value":"true"
42
+ },
43
+ "checkForInconsistencies":{
44
+ "name":"checkForInconsistencies",
45
+ "label":"Enable consistency checks",
46
+ "value":"false"
47
+ },
48
+ "performanceLogging":{
49
+ "name":"performanceLogging",
50
+ "label":"Log the execution time per shape",
51
+ "value":"false"
52
+ },
53
+ "disableSameAs":{
54
+ "name":"disableSameAs",
55
+ "label":"Disable owl:sameAs",
56
+ "value":"true"
57
+ },
58
+ "ftsIrisIndex":{
59
+ "name":"ftsIrisIndex",
60
+ "label":"FTS index for full-text indexing of IRIs",
61
+ "value":"none"
62
+ },
63
+ "entityIndexSize":{
64
+ "name":"entityIndexSize",
65
+ "label":"Entity index size",
66
+ "value":"10000000"
67
+ },
68
+ "dashDataShapes":{
69
+ "name":"dashDataShapes",
70
+ "label":"DASH data shapes extensions",
71
+ "value":"true"
72
+ },
73
+ "queryLimitResults":{
74
+ "name":"queryLimitResults",
75
+ "label":"Limit query results",
76
+ "value":"0"
77
+ },
78
+ "throwQueryEvaluationExceptionOnTimeout":{
79
+ "name":"throwQueryEvaluationExceptionOnTimeout",
80
+ "label":"Throw exception on query timeout",
81
+ "value":"false"
82
+ },
83
+ "member":{
84
+ "name":"member",
85
+ "label":"FedX repo members",
86
+ "value":[
87
+
88
+ ]
89
+ },
90
+ "storageFolder":{
91
+ "name":"storageFolder",
92
+ "label":"Storage folder",
93
+ "value":"storage"
94
+ },
95
+ "validationResultsLimitPerConstraint":{
96
+ "name":"validationResultsLimitPerConstraint",
97
+ "label":"Validation results limit per constraint",
98
+ "value":"1000"
99
+ },
100
+ "enablePredicateList":{
101
+ "name":"enablePredicateList",
102
+ "label":"Enable predicate list index",
103
+ "value":"true"
104
+ },
105
+ "transactionalValidationLimit":{
106
+ "name":"transactionalValidationLimit",
107
+ "label":"Transactional validation limit",
108
+ "value":"500000"
109
+ },
110
+ "ftsIndexes":{
111
+ "name":"ftsIndexes",
112
+ "label":"FTS indexes to build (comma delimited)",
113
+ "value":"default, iri"
114
+ },
115
+ "logValidationPlans":{
116
+ "name":"logValidationPlans",
117
+ "label":"Log the executed validation plans",
118
+ "value":"false"
119
+ },
120
+ "imports":{
121
+ "name":"imports",
122
+ "label":"Imported RDF files(';' delimited)",
123
+ "value":""
124
+ },
125
+ "isShacl":{
126
+ "name":"isShacl",
127
+ "label":"Enable SHACL validation",
128
+ "value":"false"
129
+ },
130
+ "inMemoryLiteralProperties":{
131
+ "name":"inMemoryLiteralProperties",
132
+ "label":"Cache literal language tags",
133
+ "value":"true"
134
+ },
135
+ "ruleset":{
136
+ "name":"ruleset",
137
+ "label":"Ruleset",
138
+ "value":"rdfsplus-optimized"
139
+ },
140
+ "readOnly":{
141
+ "name":"readOnly",
142
+ "label":"Read-only",
143
+ "value":"false"
144
+ },
145
+ "enableLiteralIndex":{
146
+ "name":"enableLiteralIndex",
147
+ "label":"Enable literal index",
148
+ "value":"true"
149
+ },
150
+ "enableFtsIndex":{
151
+ "name":"enableFtsIndex",
152
+ "label":"Enable full-text search (FTS) index",
153
+ "value":"true"
154
+ },
155
+ "defaultNS":{
156
+ "name":"defaultNS",
157
+ "label":"Default namespaces for imports(';' delimited)",
158
+ "value":""
159
+ },
160
+ "enableContextIndex":{
161
+ "name":"enableContextIndex",
162
+ "label":"Enable context index",
163
+ "value":"false"
164
+ },
165
+ "baseURL":{
166
+ "name":"baseURL",
167
+ "label":"Base URL",
168
+ "value":"http://example.org/owlim#"
169
+ },
170
+ "logValidationViolations":{
171
+ "name":"logValidationViolations",
172
+ "label":"Log validation violations",
173
+ "value":"false"
174
+ },
175
+ "globalLogValidationExecution":{
176
+ "name":"globalLogValidationExecution",
177
+ "label":"Log every execution step of the SHACL validation",
178
+ "value":"false"
179
+ },
180
+ "entityIdSize":{
181
+ "name":"entityIdSize",
182
+ "label":"Entity ID size",
183
+ "value":"32"
184
+ },
185
+ "repositoryType":{
186
+ "name":"repositoryType",
187
+ "label":"Repository type",
188
+ "value":"file-repository"
189
+ },
190
+ "eclipseRdf4jShaclExtensions":{
191
+ "name":"eclipseRdf4jShaclExtensions",
192
+ "label":"RDF4J SHACL extensions",
193
+ "value":"true"
194
+ },
195
+ "validationResultsLimitTotal":{
196
+ "name":"validationResultsLimitTotal",
197
+ "label":"Validation results limit total",
198
+ "value":"1000000"
199
+ }
200
+ }
201
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "": [
3
+ {
4
+ "id": "starwars",
5
+ "title": "",
6
+ "uri": "http://svelikov-desktop:9000/repositories/starwars",
7
+ "externalUrl": "http://svelikov-desktop:9000/repositories/starwars",
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
+ "id": "ttyg-repo-1725518186812",
19
+ "title": "",
20
+ "uri": "http://svelikov-desktop:9000/repositories/ttyg-repo-1725518186812",
21
+ "externalUrl": "http://svelikov-desktop:9000/repositories/ttyg-repo-1725518186812",
22
+ "local": true,
23
+ "type": "graphdb",
24
+ "sesameType": "graphdb:SailRepository",
25
+ "location": "",
26
+ "readable": true,
27
+ "writable": true,
28
+ "unsupported": false,
29
+ "state": "RUNNING"
30
+ },
31
+ {
32
+ "id": "biomarkers",
33
+ "title": "",
34
+ "uri": "http://svelikov-desktop:9000/repositories/biomarkers",
35
+ "externalUrl": "http://svelikov-desktop:9000/repositories/biomarkers",
36
+ "local": true,
37
+ "type": "graphdb",
38
+ "sesameType": "graphdb:SailRepository",
39
+ "location": "",
40
+ "readable": true,
41
+ "writable": true,
42
+ "unsupported": false,
43
+ "state": "INACTIVE"
44
+ }
45
+ ]
46
+ }
@@ -0,0 +1,15 @@
1
+ [
2
+ {
3
+ "name": "similarity-index",
4
+ "options": "-termweight idf",
5
+ "selectQuery": "SELECT ?documentID ?documentText {\n\t?documentID ?p ?documentText .\n\tfilter(isLiteral(?documentText))\n}",
6
+ "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}",
7
+ "analogicalQuery": "",
8
+ "stopList": null,
9
+ "analyzer": "org.apache.lucene.analysis.en.EnglishAnalyzer",
10
+ "status": "BUILT",
11
+ "infer": true,
12
+ "sameAs": true,
13
+ "type": "text"
14
+ }
15
+ ]
@@ -0,0 +1,19 @@
1
+ {
2
+ "id": "asst_a6jM68The7NqJax7U2PKLAe8",
3
+ "name": "Test Agent",
4
+ "model": "gpt-4o",
5
+ "temperature": 0.2,
6
+ "topP": 0.2,
7
+ "seed": 2,
8
+ "repositoryId": "starwars",
9
+ "instructions": {
10
+ "systemInstruction": "",
11
+ "userInstruction": ""
12
+ },
13
+ "assistantExtractionMethods": [
14
+ {
15
+ "method": "sparql_search",
16
+ "sparqlQuery": "select ?s ?p ?o where {?s ?p ?o .}"
17
+ }
18
+ ]
19
+ }