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.
- package/fixtures/connectors/get-connectors.json +8 -0
- package/fixtures/connectors/get-retrieval-connector-0.json +1 -0
- package/fixtures/connectors/get-retrieval-connector.json +29 -0
- package/fixtures/locale-en.json +282 -21
- package/fixtures/namespaces/get-repository-starwars-namespaces.json +252 -0
- package/fixtures/repositories/get-locations.json +72 -0
- package/fixtures/repositories/get-repositories.json +106 -0
- package/fixtures/repositories/get-repository-config-starwars-disabled-fts.json +201 -0
- package/fixtures/repositories/get-repository-config-starwars-enabled-fts.json +201 -0
- package/fixtures/repositories/get-ttyg-repositories.json +46 -0
- package/fixtures/similarity/get-similarity-indexes-0.json +1 -0
- package/fixtures/similarity/get-similarity-indexes.json +15 -0
- package/fixtures/ttyg/agent/create-agent.json +19 -0
- package/fixtures/ttyg/agent/get-agent-list-0.json +1 -0
- package/fixtures/ttyg/agent/get-agent-list-after-deleted.json +56 -0
- package/fixtures/ttyg/agent/get-agent-list-new-agent.json +93 -0
- package/fixtures/ttyg/agent/get-agent-list.json +74 -0
- package/fixtures/ttyg/chats/deleted-chat.json +3 -0
- package/fixtures/ttyg/chats/get-chat-1.json +34 -0
- package/fixtures/ttyg/chats/get-chat-list-0.json +1 -0
- package/fixtures/ttyg/chats/get-chat-list-with-deleted-chat.json +17 -0
- package/fixtures/ttyg/chats/get-chat-list-with-renamed-chat.json +22 -0
- package/fixtures/ttyg/chats/get-chat-list.json +22 -0
- package/fixtures/ttyg/chats/renamed-chat.json +4 -0
- package/integration/import/import-user-data.spec.js +2 -1
- package/integration/repository/attach-remote-location.spec.js +154 -0
- package/integration/repository/ontop-repository.spec.js +87 -1
- package/integration/repository/repositories.spec.js +4 -13
- package/integration/ttyg/agent-list.spec.js +69 -0
- package/integration/ttyg/agent-select-menu.spec.js +139 -0
- package/integration/ttyg/chat-list.spec.js +158 -0
- package/integration/ttyg/chat-panel.spec.js +79 -0
- package/integration/ttyg/create-agent.spec.js +348 -0
- package/integration/ttyg/delete-agent.spec.js +50 -0
- package/integration/ttyg/ttyg-view.spec.js +72 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/steps/import/import-steps.js +0 -4
- package/steps/modal-dialog-steps.js +8 -0
- package/steps/ontop-repository-steps.js +26 -0
- package/steps/repositories/attach-repository-steps.js +85 -0
- package/steps/repository-steps.js +33 -0
- package/steps/ttyg/chat-panel-steps.js +37 -0
- package/steps/ttyg/ttyg-agent-settings-modal.steps.js +363 -0
- package/steps/ttyg/ttyg-view-steps.js +253 -0
- package/steps/window-steps.js +5 -0
- package/stubs/connector-stubs.js +15 -0
- package/stubs/repositories/repositories-stubs.js +138 -0
- package/stubs/similarity-index-stubs.js +7 -0
- package/stubs/ttyg/ttyg-stubs.js +106 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Elasticsearch": "http://www.ontotext.com/connectors/elasticsearch#",
|
|
3
|
+
"OpenSearch": "http://www.ontotext.com/connectors/opensearch#",
|
|
4
|
+
"Solr": "http://www.ontotext.com/connectors/solr#",
|
|
5
|
+
"Lucene": "http://www.ontotext.com/connectors/lucene#",
|
|
6
|
+
"Kafka": "http://www.ontotext.com/connectors/kafka#",
|
|
7
|
+
"ChatGPT Retrieval": "http://www.ontotext.com/connectors/retrieval#"
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"values": {
|
|
4
|
+
"types": [
|
|
5
|
+
"urn:test"
|
|
6
|
+
],
|
|
7
|
+
"importGraph": false,
|
|
8
|
+
"languages": [],
|
|
9
|
+
"readonly": false,
|
|
10
|
+
"retrievalUrl": "http://localhost:8000",
|
|
11
|
+
"detectFields": false,
|
|
12
|
+
"fields": [
|
|
13
|
+
{
|
|
14
|
+
"propertyChain": [
|
|
15
|
+
"http://test"
|
|
16
|
+
],
|
|
17
|
+
"fieldName": "test",
|
|
18
|
+
"indexed": true,
|
|
19
|
+
"objectFields": [],
|
|
20
|
+
"fieldTextPrefix": "has {}",
|
|
21
|
+
"multivalued": true
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"bulkUpdateBatchSize": 1000,
|
|
25
|
+
"skipInitialIndexing": false
|
|
26
|
+
},
|
|
27
|
+
"name": "gpt-connector"
|
|
28
|
+
}
|
|
29
|
+
]
|
package/fixtures/locale-en.json
CHANGED
|
@@ -216,6 +216,245 @@
|
|
|
216
216
|
"all": "all - CLEAR ALL graphs"
|
|
217
217
|
}
|
|
218
218
|
},
|
|
219
|
+
"ttyg": {
|
|
220
|
+
"helpInfo": "Talk to Your Graph is chat bot based on OpenAI's GPT-4 model that can answer questions about data stored in GraphDB, leveraging both your data and the general knowledge of the GPT-4 model. The bot works in connection with the ChatGPT Retrieval connector.",
|
|
221
|
+
"loading": "Loading...",
|
|
222
|
+
"help": {
|
|
223
|
+
"btn": {
|
|
224
|
+
"show_help": {
|
|
225
|
+
"tooltip": "Show help"
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"dialog": {
|
|
230
|
+
"delete": {
|
|
231
|
+
"title": "Delete Conversation",
|
|
232
|
+
"body": "Do you really want to delete <b>{{chatName}}</b>? All chat history will be lost."
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"chat": {
|
|
236
|
+
"loading_chats": "Loading chats...",
|
|
237
|
+
"btn": {
|
|
238
|
+
"open_sidebar": {
|
|
239
|
+
"tooltip": "Open sidebar"
|
|
240
|
+
},
|
|
241
|
+
"close_sidebar": {
|
|
242
|
+
"tooltip": "Close sidebar"
|
|
243
|
+
},
|
|
244
|
+
"create_chat": {
|
|
245
|
+
"tooltip": "Create a new chat"
|
|
246
|
+
},
|
|
247
|
+
"export_chat": {
|
|
248
|
+
"label": "Export",
|
|
249
|
+
"tooltip": "Export chat"
|
|
250
|
+
},
|
|
251
|
+
"delete_chat": {
|
|
252
|
+
"label": "Delete chat",
|
|
253
|
+
"tooltip": "Delete chat"
|
|
254
|
+
},
|
|
255
|
+
"rename_chat": {
|
|
256
|
+
"label": "Rename",
|
|
257
|
+
"tooltip": "Rename chat"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"messages": {
|
|
261
|
+
"create_failure": "Failed to create new conversation. Please try again.",
|
|
262
|
+
"rename_failure": "Failed to rename the conversation. Please try again.",
|
|
263
|
+
"delete_failure": "Failed to delete the conversation. Please try again.",
|
|
264
|
+
"export_failure": "Failed to export the conversation. Please try again."
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"chat_panel": {
|
|
268
|
+
"hint": "Talk to your graph – simply ask a question!",
|
|
269
|
+
"btn": {
|
|
270
|
+
"ask": {
|
|
271
|
+
"label": "Ask"
|
|
272
|
+
},
|
|
273
|
+
"regenerate": {
|
|
274
|
+
"tooltip": "Regenerate"
|
|
275
|
+
},
|
|
276
|
+
"copy": {
|
|
277
|
+
"tooltip": "Copy"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"messages": {
|
|
281
|
+
"answer_copy_successful": "The answer was successfully copied to the clipboard.",
|
|
282
|
+
"answer_copy_failed": "Failed to copy the answer to the clipboard."
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"agent": {
|
|
286
|
+
"loading_agents": "Loading agents...",
|
|
287
|
+
"deleting_agent": "Deleting agent...",
|
|
288
|
+
"deleted_repository": "Deleted repository",
|
|
289
|
+
"create_agent_modal": {
|
|
290
|
+
"title": "Create Agent",
|
|
291
|
+
"advanced_settings": {
|
|
292
|
+
"show": "Show advanced settings",
|
|
293
|
+
"hide": "Hide advanced settings"
|
|
294
|
+
},
|
|
295
|
+
"form": {
|
|
296
|
+
"agent_name": {
|
|
297
|
+
"label": "GraphAgent name",
|
|
298
|
+
"placeholder": "Enter user friendly name"
|
|
299
|
+
},
|
|
300
|
+
"repository": {
|
|
301
|
+
"label": "Repository ID"
|
|
302
|
+
},
|
|
303
|
+
"model": {
|
|
304
|
+
"label": "Model",
|
|
305
|
+
"hint": "Check out the available OpenAI models <a href=\"https://platform.openai.com/docs/models\" target=\"_blank\">here</a>."
|
|
306
|
+
},
|
|
307
|
+
"temperature": {
|
|
308
|
+
"label": "Temperature"
|
|
309
|
+
},
|
|
310
|
+
"top_p": {
|
|
311
|
+
"label": "Top_P"
|
|
312
|
+
},
|
|
313
|
+
"seed": {
|
|
314
|
+
"label": "Seed",
|
|
315
|
+
"hint": "Any integer value"
|
|
316
|
+
},
|
|
317
|
+
"extraction_method": {
|
|
318
|
+
"label": "Query methods",
|
|
319
|
+
"required": "At least one query method must be selected"
|
|
320
|
+
},
|
|
321
|
+
"fts_search": {
|
|
322
|
+
"label": "Full-text search",
|
|
323
|
+
"fts_disabled_message": "To use this method, you must enable the full-text search (FTS) index on chosen repository and then restart it.<br/>Enable the index: <a href=\"{{repositoryEditPage}}\" target=\"_blank\">here</a>",
|
|
324
|
+
"missing_repository_id": "Repository ID must be selected"
|
|
325
|
+
},
|
|
326
|
+
"sparql_search": {
|
|
327
|
+
"label": "SPARQL",
|
|
328
|
+
"required_option": "Select how an ontology should be fetched"
|
|
329
|
+
},
|
|
330
|
+
"ontology_graph": {
|
|
331
|
+
"label": "Fetch ontology from a named graph"
|
|
332
|
+
},
|
|
333
|
+
"construct_query": {
|
|
334
|
+
"label": "Provide a SPARQL CONSTRUCT query that fetches the ontology"
|
|
335
|
+
},
|
|
336
|
+
"similarity_search": {
|
|
337
|
+
"label": "Similarity search"
|
|
338
|
+
},
|
|
339
|
+
"similarity_index": {
|
|
340
|
+
"label": "Similarity index name",
|
|
341
|
+
"loading_indexes": "Loading similarity indexes...",
|
|
342
|
+
"no_similarity_index_message": "To use this method, you must have a similarity index created.<br/>Create similarity text index <a href=\"{{similarityIndexPage}}\" target=\"_blank\">here</a>."
|
|
343
|
+
},
|
|
344
|
+
"similarity_threshold": {
|
|
345
|
+
"label": "Similarity threshold"
|
|
346
|
+
},
|
|
347
|
+
"retrieval_search": {
|
|
348
|
+
"label": "ChatGPT retrieval connector",
|
|
349
|
+
"no_retrieval_connectors_message": "No connector instances.<br/>Create ChatGPT retrieval connector <a href=\"{{retrievalConnectorPage}}\" target=\"_blank\">here</a>."
|
|
350
|
+
},
|
|
351
|
+
"connector_id": {
|
|
352
|
+
"label": "ChatGPT retrieval connector"
|
|
353
|
+
},
|
|
354
|
+
"query_template": {
|
|
355
|
+
"label": "Query template"
|
|
356
|
+
},
|
|
357
|
+
"max_number_of_triples_per_call": {
|
|
358
|
+
"label": "Max number of results (triples) per call",
|
|
359
|
+
"placeholder": "Automatic value"
|
|
360
|
+
},
|
|
361
|
+
"system_instruction": {
|
|
362
|
+
"label": "System instructions",
|
|
363
|
+
"placeholder": "Enter system instructions"
|
|
364
|
+
},
|
|
365
|
+
"user_instruction": {
|
|
366
|
+
"label": "User instructions",
|
|
367
|
+
"placeholder": "Enter user instructions"
|
|
368
|
+
},
|
|
369
|
+
"additional_query_methods": {
|
|
370
|
+
"label": "Additional query methods",
|
|
371
|
+
"method": {
|
|
372
|
+
"iri_discovery_search": "Full-text search in labels for IRI discovery"
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"btn": {
|
|
377
|
+
"create": {
|
|
378
|
+
"label": "Create Agent"
|
|
379
|
+
},
|
|
380
|
+
"cancel": {
|
|
381
|
+
"label": "Cancel"
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"delete_agent_modal": {
|
|
386
|
+
"title": "Delete Agent",
|
|
387
|
+
"body": "Do you really want to delete the agent <b>{{agentName}}</b>?"
|
|
388
|
+
},
|
|
389
|
+
"agent_select_menu": {
|
|
390
|
+
"no_selection_label": "Select an agent",
|
|
391
|
+
"deleted_agent": "[deleted agent]",
|
|
392
|
+
"configure_agent_modal": {
|
|
393
|
+
"title": "Configure Agent",
|
|
394
|
+
"body": "Selected agent has no repository configured. Do you want to configure it now?"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"fat_btn": {
|
|
398
|
+
"create_agent": {
|
|
399
|
+
"label": "Create your first agent"
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
"btn": {
|
|
403
|
+
"filter": {
|
|
404
|
+
"tooltip": "Filter by repository",
|
|
405
|
+
"all": "All"
|
|
406
|
+
},
|
|
407
|
+
"edit_agent": {
|
|
408
|
+
"label": "Settings",
|
|
409
|
+
"tooltip": "Edit Agent"
|
|
410
|
+
},
|
|
411
|
+
"clone_agent": {
|
|
412
|
+
"label": "Clone",
|
|
413
|
+
"tooltip": "Clone Agent"
|
|
414
|
+
},
|
|
415
|
+
"delete_agent": {
|
|
416
|
+
"label": "Delete Agent",
|
|
417
|
+
"tooltip": "Delete Agent"
|
|
418
|
+
},
|
|
419
|
+
"create_agent": {
|
|
420
|
+
"label": "Create Agent",
|
|
421
|
+
"tooltip": "Create Agent"
|
|
422
|
+
},
|
|
423
|
+
"open_sidebar": {
|
|
424
|
+
"tooltip": "Open sidebar"
|
|
425
|
+
},
|
|
426
|
+
"close_sidebar": {
|
|
427
|
+
"tooltip": "Close sidebar"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"messages": {
|
|
431
|
+
"no_agents": "No agents found for the selected filter.",
|
|
432
|
+
"help_1": "Talk to your data in natural language. All you need to do is create and instruct your own AI Agent to assist you.",
|
|
433
|
+
"help_2": "The Agent is an AI-powered conversational agent designed to help with a wide range of tasks, from answering questions and providing information to assisting with creative and technical projects. It leverages advanced natural language processing to understand and respond to user inputs in a human-like manner, making interactions intuitive and efficient.",
|
|
434
|
+
"error_retrieval_connectors_loading": "Error loading retrieval connectors",
|
|
435
|
+
"error_similarity_indexes_loading": "Error loading similarity indexes",
|
|
436
|
+
"error_repository_config_loading": "Error loading repository configurations"
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
"help.what.title": "What is this?",
|
|
440
|
+
"help.what.content": "Talk to Your Graph is chat bot based on OpenAI's GPT-4 model that can answer questions about data stored in GraphDB, leveraging both your data and the general knowledge of the GPT-4 model.",
|
|
441
|
+
"help.how.title": "How does it work?",
|
|
442
|
+
"help.how.content": "The bot uses the ChatGPT Retrieval connector to fetch information it does not know about. As such, you must first create a suitable connector. See also the settings for fine-tuning the integration with the Retrieval connector.",
|
|
443
|
+
"clear.hint": "Clear the chat history",
|
|
444
|
+
"clear.history.confirmation": "This will clear the history conversation.",
|
|
445
|
+
"settings.title": "Talk to Your Graph Settings",
|
|
446
|
+
"settings.info": "The settings are stored in the browser only and are per repository.",
|
|
447
|
+
"settings.connector.id": "Retrieval connector ID",
|
|
448
|
+
"settings.connector.id.tooltip": "The ID of the Retrieval connector to use. If empty, the first defined connector will be used.",
|
|
449
|
+
"settings.query.template": "Query template",
|
|
450
|
+
"settings.query.template.tooltip": "The query template used by the chat bot to request more information from the connector. It must contain at least the \"query\" key but may also contain a \"filter\" key if your connector has suitable metadata.",
|
|
451
|
+
"settings.ground.truths": "Ground truths",
|
|
452
|
+
"settings.ground.truths.tooltip": "An optional list of ground truths that help the chat bot to establish context.",
|
|
453
|
+
"settings.topk": "Number of top results",
|
|
454
|
+
"settings.topk.tooltip": "Number of results returned to the chat bot when it requests more information. More results will provide more information but they may also introduce noise.",
|
|
455
|
+
"settings.echo.vector.query": "Echo vector query",
|
|
456
|
+
"settings.echo.vector.query.tooltip": "If enabled the bot will use the generated queries as feedback to the GPT API."
|
|
457
|
+
},
|
|
219
458
|
"config.name.label": "Config name",
|
|
220
459
|
"graph.config.required": "My graph config (required)",
|
|
221
460
|
"description.text": "Description",
|
|
@@ -919,11 +1158,13 @@
|
|
|
919
1158
|
"force.serial.pipeline": "Force serial pipeline",
|
|
920
1159
|
"restore.defaults.btn": "Restore defaults",
|
|
921
1160
|
"only.upload.btn": "Only upload",
|
|
1161
|
+
"cancel.btn": "Cancel",
|
|
922
1162
|
"abort.btn": "Abort",
|
|
923
1163
|
"no.files.found": "No files found",
|
|
924
1164
|
"enable.for.auto.start": "Enable this option to start the import when you click the Import button. If it is disabled the import will be added to the list but not started automatically.",
|
|
925
1165
|
"auto.start": "Start import automatically",
|
|
926
1166
|
"data.from.url": "Import RDF data from URL",
|
|
1167
|
+
"format": "Format",
|
|
927
1168
|
"supported.url.with.rdf": "URL with RDF data. Supported formats are",
|
|
928
1169
|
"invalid.url": "Not valid url!",
|
|
929
1170
|
"gz.zip": ", as well as their .gz versions and .zip archives",
|
|
@@ -1033,6 +1274,7 @@
|
|
|
1033
1274
|
"name": "Name",
|
|
1034
1275
|
"size": "Size",
|
|
1035
1276
|
"modified": "Modified",
|
|
1277
|
+
"uploaded": "Uploaded",
|
|
1036
1278
|
"imported": "Imported",
|
|
1037
1279
|
"context": "Context"
|
|
1038
1280
|
},
|
|
@@ -1344,6 +1586,9 @@
|
|
|
1344
1586
|
"repos.edit.common.settings": "Edit common settings for these repositories",
|
|
1345
1587
|
"repos.view.update.licenses": "View or update license for these repositories",
|
|
1346
1588
|
"repos.refresh.page.msg": " Refresh the page to retry.",
|
|
1589
|
+
"repositories.location.remote.graph_db.instances": "Remote GraphDB instances",
|
|
1590
|
+
"repositories.location.local.graph_db.instance": "Local GraphDB instance",
|
|
1591
|
+
"repositories.location.ontopic.instances": "Remote Ontopic instances",
|
|
1347
1592
|
"no.repos.in.current.location": "There are no repositories in the current location",
|
|
1348
1593
|
"connect.repo": "Connect repository",
|
|
1349
1594
|
"connected.tooltip": "Connected",
|
|
@@ -1361,6 +1606,12 @@
|
|
|
1361
1606
|
"no.connected.gdb.instances": "There are no connected GraphDB instances.",
|
|
1362
1607
|
"edit.file.content": "Edit file content",
|
|
1363
1608
|
"upload.file": "Upload file...",
|
|
1609
|
+
"common": {
|
|
1610
|
+
"dates": {
|
|
1611
|
+
"today": "Today",
|
|
1612
|
+
"yesterday": "Yesterday"
|
|
1613
|
+
}
|
|
1614
|
+
},
|
|
1364
1615
|
"common.confirm.delete": "Confirm delete",
|
|
1365
1616
|
"common.confirm.save": "Confirm save",
|
|
1366
1617
|
"common.cancel.btn": "Cancel",
|
|
@@ -1510,6 +1761,37 @@
|
|
|
1510
1761
|
"attach.remote.gdb.instance": "Attach a remote GraphDB instance",
|
|
1511
1762
|
"remote.location.url": "Location URL*",
|
|
1512
1763
|
"remote.location.enter.url.msg": "Enter a URL to a remote GraphDB instance",
|
|
1764
|
+
"remote.location.required": "Location URL is required.",
|
|
1765
|
+
"remote.location.ontopic.username.required": "ClientID*",
|
|
1766
|
+
"remote.location.ontopic.password.required": "Secret*",
|
|
1767
|
+
"remote.ontopic.location.enter.url.msg": "Enter a URL to an Ontopic remote instance",
|
|
1768
|
+
"manage.remote.location.dialog.graph_db.basic.auth.type.description": "Basic authentication requires a Username and a Password.",
|
|
1769
|
+
"manage.remote.location.dialog.ontopic.basic.auth.type.description": "Basic authentication requires a ClientID and a Secret.",
|
|
1770
|
+
"manage.remote.location.dialog.update.instance": "Edit remote instance",
|
|
1771
|
+
"manage.remote.location.dialog.attach.instance": "Attach a remote instance",
|
|
1772
|
+
"manage.remote.location.dialog.graph_db.location.instance": "GraphDB instance",
|
|
1773
|
+
"manage.remote.location.dialog.ontopic.location.instance": "Ontopic instance",
|
|
1774
|
+
"manage.remote.location.dialog.required.url": "Location URL*",
|
|
1775
|
+
"manage.remote.location.dialog.graph_db.url.message": "Enter a URL to a remote GraphDB instance",
|
|
1776
|
+
"manage.remote.location.dialog.ontopic.url.message": "Enter a URL to an Ontopic remote instance",
|
|
1777
|
+
"manage.remote.location.dialog.url.requred.message": "Location URL is required.",
|
|
1778
|
+
"manage.remote.location.dialog.graph_db.error.not_valid.url": "Note that the location should be a URL that points to a remote GraphDB installation, e.g.",
|
|
1779
|
+
"manage.remote.location.dialog.ontopic.error.not_valid.url": "Note that the location should be a URL that points to a remote Ontopic installation, e.g.",
|
|
1780
|
+
"manage.remote.location.dialog.auth_type.header": "Authentication type",
|
|
1781
|
+
"manage.remote.location.dialog.auth_type.none": "None",
|
|
1782
|
+
"manage.remote.location.dialog.auth_type.basic": "Basic auth",
|
|
1783
|
+
"manage.remote.location.dialog.auth_type.basic.description": "No authentication will be used with this location.",
|
|
1784
|
+
"manage.remote.location.dialog.auth_type.signature": "Signature",
|
|
1785
|
+
"manage.remote.location.dialog.graph_db.username.required.message": "Username*",
|
|
1786
|
+
"manage.remote.location.dialog.ontopic.username.required.message": "ClientID*",
|
|
1787
|
+
"manage.remote.location.dialog.graph_db.password.required.message": "Password*",
|
|
1788
|
+
"manage.remote.location.dialog.ontopic.password.required.message": "Secret*",
|
|
1789
|
+
"manage.remote.location.dialog.auth_type.signature.description.prefix": "Signature authentication uses the token secret, which must be the same on all GraphDB instances. For more information on configuring the token secret, please refer to ",
|
|
1790
|
+
"manage.remote.location.dialog.auth_type.signature.description.suffix": " in the documentation.",
|
|
1791
|
+
"manage.remote.location.dialog.graph_db.username.placeholder": "my username",
|
|
1792
|
+
"manage.remote.location.dialog.ontopic.username.placeholder": "my client id",
|
|
1793
|
+
"manage.remote.location.dialog.graph_db.password.placeholder": "my password",
|
|
1794
|
+
"manage.remote.location.dialog.ontopic.password.placeholder": "my secret",
|
|
1513
1795
|
"valid.remote.location.warning": "Note that the location should be a URL that points to a remote GraphDB installation, e.g.",
|
|
1514
1796
|
"auth.type.header": "Authentication type",
|
|
1515
1797
|
"remote.location.no.auth.used.tooltip": "No authentication used with remote location",
|
|
@@ -2084,27 +2366,6 @@
|
|
|
2084
2366
|
"guide.confirm.cancel.message": "Are you sure you want to stop the guide?",
|
|
2085
2367
|
"guide.unexpected.error.message": "The guide was cancelled due to an unexpected error. Please run the guide again and if the problem persists contact the support.",
|
|
2086
2368
|
"guide.start.unexpected.error.message": "The guide cannot be started due to an unexpected error. Please try running the guide again and if the problem persists contact the support.",
|
|
2087
|
-
"ttyg.helpInfo": "Talk to Your Graph is chat bot based on OpenAI's GPT-4 model that can answer questions about data stored in GraphDB, leveraging both your data and the general knowledge of the GPT-4 model. The bot works in connection with the ChatGPT Retrieval connector.",
|
|
2088
|
-
"ttyg.hint": "Talk to your graph – simply ask a question!",
|
|
2089
|
-
"ttyg.help.what.title": "What is this?",
|
|
2090
|
-
"ttyg.help.what.content": "Talk to Your Graph is chat bot based on OpenAI's GPT-4 model that can answer questions about data stored in GraphDB, leveraging both your data and the general knowledge of the GPT-4 model.",
|
|
2091
|
-
"ttyg.help.how.title": "How does it work?",
|
|
2092
|
-
"ttyg.help.how.content": "The bot uses the ChatGPT Retrieval connector to fetch information it does not know about. As such, you must first create a suitable connector. See also the settings for fine-tuning the integration with the Retrieval connector.",
|
|
2093
|
-
"ttyg.ask.button": "Ask",
|
|
2094
|
-
"ttyg.clear.hint": "Clear the chat history",
|
|
2095
|
-
"ttyg.clear.history.confirmation": "This will clear the history conversation.",
|
|
2096
|
-
"ttyg.settings.title": "Talk to Your Graph Settings",
|
|
2097
|
-
"ttyg.settings.info": "The settings are stored in the browser only and are per repository.",
|
|
2098
|
-
"ttyg.settings.connector.id": "Retrieval connector ID",
|
|
2099
|
-
"ttyg.settings.connector.id.tooltip": "The ID of the Retrieval connector to use. If empty, the first defined connector will be used.",
|
|
2100
|
-
"ttyg.settings.query.template": "Query template",
|
|
2101
|
-
"ttyg.settings.query.template.tooltip": "The query template used by the chat bot to request more information from the connector. It must contain at least the \"query\" key but may also contain a \"filter\" key if your connector has suitable metadata.",
|
|
2102
|
-
"ttyg.settings.ground.truths": "Ground truths",
|
|
2103
|
-
"ttyg.settings.ground.truths.tooltip": "An optional list of ground truths that help the chat bot to establish context.",
|
|
2104
|
-
"ttyg.settings.topk": "Number of top results",
|
|
2105
|
-
"ttyg.settings.topk.tooltip": "Number of results returned to the chat bot when it requests more information. More results will provide more information but they may also introduce noise.",
|
|
2106
|
-
"ttyg.settings.echo.vector.query": "Echo vector query",
|
|
2107
|
-
"ttyg.settings.echo.vector.query.tooltip": "If enabled the bot will use the generated queries as feedback to the GPT API.",
|
|
2108
2369
|
"global.operations_statuses.queries.title": "Running queries",
|
|
2109
2370
|
"global.operations_statuses.updates.title": "Running updates",
|
|
2110
2371
|
"global.operations_statuses.imports.title": "Running imports",
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
{
|
|
2
|
+
"head" : {
|
|
3
|
+
"vars" : [
|
|
4
|
+
"prefix",
|
|
5
|
+
"namespace"
|
|
6
|
+
]
|
|
7
|
+
},
|
|
8
|
+
"results" : {
|
|
9
|
+
"bindings" : [
|
|
10
|
+
{
|
|
11
|
+
"prefix" : {
|
|
12
|
+
"type" : "literal",
|
|
13
|
+
"value" : "agg"
|
|
14
|
+
},
|
|
15
|
+
"namespace" : {
|
|
16
|
+
"type" : "literal",
|
|
17
|
+
"value" : "http://jena.apache.org/ARQ/function/aggregate#"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"prefix" : {
|
|
22
|
+
"type" : "literal",
|
|
23
|
+
"value" : "sail"
|
|
24
|
+
},
|
|
25
|
+
"namespace" : {
|
|
26
|
+
"type" : "literal",
|
|
27
|
+
"value" : "http://www.openrdf.org/config/sail#"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"prefix" : {
|
|
32
|
+
"type" : "literal",
|
|
33
|
+
"value" : "owl"
|
|
34
|
+
},
|
|
35
|
+
"namespace" : {
|
|
36
|
+
"type" : "literal",
|
|
37
|
+
"value" : "http://www.w3.org/2002/07/owl#"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"prefix" : {
|
|
42
|
+
"type" : "literal",
|
|
43
|
+
"value" : "geof"
|
|
44
|
+
},
|
|
45
|
+
"namespace" : {
|
|
46
|
+
"type" : "literal",
|
|
47
|
+
"value" : "http://www.opengis.net/def/function/geosparql/"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"prefix" : {
|
|
52
|
+
"type" : "literal",
|
|
53
|
+
"value" : "xsd"
|
|
54
|
+
},
|
|
55
|
+
"namespace" : {
|
|
56
|
+
"type" : "literal",
|
|
57
|
+
"value" : "http://www.w3.org/2001/XMLSchema#"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"prefix" : {
|
|
62
|
+
"type" : "literal",
|
|
63
|
+
"value" : "fn"
|
|
64
|
+
},
|
|
65
|
+
"namespace" : {
|
|
66
|
+
"type" : "literal",
|
|
67
|
+
"value" : "http://www.w3.org/2005/xpath-functions"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"prefix" : {
|
|
72
|
+
"type" : "literal",
|
|
73
|
+
"value" : "rdfs"
|
|
74
|
+
},
|
|
75
|
+
"namespace" : {
|
|
76
|
+
"type" : "literal",
|
|
77
|
+
"value" : "http://www.w3.org/2000/01/rdf-schema#"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"prefix" : {
|
|
82
|
+
"type" : "literal",
|
|
83
|
+
"value" : "spif"
|
|
84
|
+
},
|
|
85
|
+
"namespace" : {
|
|
86
|
+
"type" : "literal",
|
|
87
|
+
"value" : "http://spinrdf.org/spif#"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"prefix" : {
|
|
92
|
+
"type" : "literal",
|
|
93
|
+
"value" : "path"
|
|
94
|
+
},
|
|
95
|
+
"namespace" : {
|
|
96
|
+
"type" : "literal",
|
|
97
|
+
"value" : "http://www.ontotext.com/path#"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"prefix" : {
|
|
102
|
+
"type" : "literal",
|
|
103
|
+
"value" : "array"
|
|
104
|
+
},
|
|
105
|
+
"namespace" : {
|
|
106
|
+
"type" : "literal",
|
|
107
|
+
"value" : "http://www.w3.org/2005/xpath-functions/array"
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"prefix" : {
|
|
112
|
+
"type" : "literal",
|
|
113
|
+
"value" : "apf"
|
|
114
|
+
},
|
|
115
|
+
"namespace" : {
|
|
116
|
+
"type" : "literal",
|
|
117
|
+
"value" : "http://jena.apache.org/ARQ/property#"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"prefix" : {
|
|
122
|
+
"type" : "literal",
|
|
123
|
+
"value" : "rep"
|
|
124
|
+
},
|
|
125
|
+
"namespace" : {
|
|
126
|
+
"type" : "literal",
|
|
127
|
+
"value" : "http://www.openrdf.org/config/repository#"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"prefix" : {
|
|
132
|
+
"type" : "literal",
|
|
133
|
+
"value" : "map"
|
|
134
|
+
},
|
|
135
|
+
"namespace" : {
|
|
136
|
+
"type" : "literal",
|
|
137
|
+
"value" : "http://www.w3.org/2005/xpath-functions/map"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"prefix" : {
|
|
142
|
+
"type" : "literal",
|
|
143
|
+
"value" : "sr"
|
|
144
|
+
},
|
|
145
|
+
"namespace" : {
|
|
146
|
+
"type" : "literal",
|
|
147
|
+
"value" : "http://www.openrdf.org/config/repository/sail#"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"prefix" : {
|
|
152
|
+
"type" : "literal",
|
|
153
|
+
"value" : "wgs"
|
|
154
|
+
},
|
|
155
|
+
"namespace" : {
|
|
156
|
+
"type" : "literal",
|
|
157
|
+
"value" : "http://www.w3.org/2003/01/geo/wgs84_pos#"
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"prefix" : {
|
|
162
|
+
"type" : "literal",
|
|
163
|
+
"value" : "gn"
|
|
164
|
+
},
|
|
165
|
+
"namespace" : {
|
|
166
|
+
"type" : "literal",
|
|
167
|
+
"value" : "http://www.geonames.org/ontology#"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"prefix" : {
|
|
172
|
+
"type" : "literal",
|
|
173
|
+
"value" : "afn"
|
|
174
|
+
},
|
|
175
|
+
"namespace" : {
|
|
176
|
+
"type" : "literal",
|
|
177
|
+
"value" : "http://jena.apache.org/ARQ/function#"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"prefix" : {
|
|
182
|
+
"type" : "literal",
|
|
183
|
+
"value" : "list"
|
|
184
|
+
},
|
|
185
|
+
"namespace" : {
|
|
186
|
+
"type" : "literal",
|
|
187
|
+
"value" : "http://jena.apache.org/ARQ/list#"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"prefix" : {
|
|
192
|
+
"type" : "literal",
|
|
193
|
+
"value" : "rdf"
|
|
194
|
+
},
|
|
195
|
+
"namespace" : {
|
|
196
|
+
"type" : "literal",
|
|
197
|
+
"value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"prefix" : {
|
|
202
|
+
"type" : "literal",
|
|
203
|
+
"value" : "ofn"
|
|
204
|
+
},
|
|
205
|
+
"namespace" : {
|
|
206
|
+
"type" : "literal",
|
|
207
|
+
"value" : "http://www.ontotext.com/sparql/functions/"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"prefix" : {
|
|
212
|
+
"type" : "literal",
|
|
213
|
+
"value" : "geoext"
|
|
214
|
+
},
|
|
215
|
+
"namespace" : {
|
|
216
|
+
"type" : "literal",
|
|
217
|
+
"value" : "http://rdf.useekm.com/ext#"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"prefix" : {
|
|
222
|
+
"type" : "literal",
|
|
223
|
+
"value" : "graphdb"
|
|
224
|
+
},
|
|
225
|
+
"namespace" : {
|
|
226
|
+
"type" : "literal",
|
|
227
|
+
"value" : "http://www.ontotext.com/config/graphdb#"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"prefix" : {
|
|
232
|
+
"type" : "literal",
|
|
233
|
+
"value" : "math"
|
|
234
|
+
},
|
|
235
|
+
"namespace" : {
|
|
236
|
+
"type" : "literal",
|
|
237
|
+
"value" : "http://www.w3.org/2005/xpath-functions/math"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"prefix" : {
|
|
242
|
+
"type" : "literal",
|
|
243
|
+
"value" : "omgeo"
|
|
244
|
+
},
|
|
245
|
+
"namespace" : {
|
|
246
|
+
"type" : "literal",
|
|
247
|
+
"value" : "http://www.ontotext.com/owlim/geo#"
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
]
|
|
251
|
+
}
|
|
252
|
+
}
|