graphdb-workbench-tests 2.8.0-TR1 → 2.8.0-TR3

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 (55) 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 +296 -23
  5. package/fixtures/namespaces/get-repository-starwars-namespaces.json +252 -0
  6. package/fixtures/repositories/builtin_Rules.pie +741 -0
  7. package/fixtures/repositories/get-repository-config-starwars-disabled-fts.json +201 -0
  8. package/fixtures/repositories/get-repository-config-starwars-enabled-fts.json +201 -0
  9. package/fixtures/repositories/get-ttyg-repositories.json +46 -0
  10. package/fixtures/repositories/invalid_builtin_Rules.pie +741 -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 +77 -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-server-files.spec.js +40 -0
  26. package/integration/import/import-user-data.spec.js +2 -1
  27. package/integration/repository/ontop-repository.spec.js +87 -1
  28. package/integration/repository/repositories.spec.js +63 -12
  29. package/integration/setup/aclmanagement/create-rule.spec.js +31 -6
  30. package/integration/setup/aclmanagement/scopes.spec.js +8 -4
  31. package/integration/setup/user-and-access.spec.js +9 -0
  32. package/integration/ttyg/agent-list.spec.js +69 -0
  33. package/integration/ttyg/agent-select-menu.spec.js +139 -0
  34. package/integration/ttyg/chat-list.spec.js +158 -0
  35. package/integration/ttyg/chat-panel.spec.js +79 -0
  36. package/integration/ttyg/create-agent.spec.js +348 -0
  37. package/integration/ttyg/delete-agent.spec.js +50 -0
  38. package/integration/ttyg/edit-agent.spec.js +43 -0
  39. package/integration/ttyg/ttyg-view.spec.js +72 -0
  40. package/npm-shrinkwrap.json +2 -2
  41. package/package.json +1 -1
  42. package/steps/import/import-steps.js +9 -5
  43. package/steps/modal-dialog-steps.js +8 -0
  44. package/steps/ontop-repository-steps.js +26 -0
  45. package/steps/repository-steps.js +41 -0
  46. package/steps/setup/acl-management-steps.js +17 -0
  47. package/steps/setup/user-and-access-steps.js +4 -0
  48. package/steps/ttyg/chat-panel-steps.js +37 -0
  49. package/steps/ttyg/ttyg-agent-settings-modal.steps.js +376 -0
  50. package/steps/ttyg/ttyg-view-steps.js +253 -0
  51. package/steps/window-steps.js +5 -0
  52. package/stubs/connector-stubs.js +15 -0
  53. package/stubs/repositories/repositories-stubs.js +129 -2
  54. package/stubs/similarity-index-stubs.js +7 -0
  55. package/stubs/ttyg/ttyg-stubs.js +119 -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,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
+ ]
@@ -176,6 +176,9 @@
176
176
  "role": "ROLE1",
177
177
  "plugin": "Plugin"
178
178
  },
179
+ "custom_prefix_warning": {
180
+ "text": "Custom roles should be entered without the \"CUSTOM_\" prefix in Workbench"
181
+ },
179
182
  "actions": {
180
183
  "move_up": "Move the rule up",
181
184
  "move_down": "Move the rule down",
@@ -213,6 +216,253 @@
213
216
  "all": "all - CLEAR ALL graphs"
214
217
  }
215
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": {
291
+ "create": "Create Agent",
292
+ "edit": "Edit Agent"
293
+ },
294
+ "advanced_settings": {
295
+ "show": "Show advanced settings",
296
+ "hide": "Hide advanced settings"
297
+ },
298
+ "form": {
299
+ "agent_name": {
300
+ "label": "GraphAgent name",
301
+ "placeholder": "Enter user friendly name"
302
+ },
303
+ "repository": {
304
+ "label": "Repository ID"
305
+ },
306
+ "model": {
307
+ "label": "Model",
308
+ "hint": "Check out the available OpenAI models <a href=\"https://platform.openai.com/docs/models\" target=\"_blank\">here</a>."
309
+ },
310
+ "temperature": {
311
+ "label": "Temperature"
312
+ },
313
+ "top_p": {
314
+ "label": "Top_P"
315
+ },
316
+ "seed": {
317
+ "label": "Seed",
318
+ "hint": "Any integer value"
319
+ },
320
+ "extraction_method": {
321
+ "label": "Query methods",
322
+ "required": "At least one query method must be selected"
323
+ },
324
+ "fts_search": {
325
+ "label": "Full-text search",
326
+ "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>",
327
+ "missing_repository_id": "Repository ID must be selected"
328
+ },
329
+ "sparql_search": {
330
+ "label": "SPARQL",
331
+ "required_option": "Select how an ontology should be fetched"
332
+ },
333
+ "ontology_graph": {
334
+ "label": "Fetch ontology from a named graph"
335
+ },
336
+ "construct_query": {
337
+ "label": "Provide a SPARQL CONSTRUCT query that fetches the ontology"
338
+ },
339
+ "similarity_search": {
340
+ "label": "Similarity search"
341
+ },
342
+ "similarity_index": {
343
+ "label": "Similarity index name",
344
+ "loading_indexes": "Loading similarity indexes...",
345
+ "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>."
346
+ },
347
+ "similarity_threshold": {
348
+ "label": "Similarity threshold"
349
+ },
350
+ "retrieval_search": {
351
+ "label": "ChatGPT retrieval connector",
352
+ "no_retrieval_connectors_message": "No connector instances.<br/>Create ChatGPT retrieval connector <a href=\"{{retrievalConnectorPage}}\" target=\"_blank\">here</a>."
353
+ },
354
+ "connector_id": {
355
+ "label": "ChatGPT retrieval connector"
356
+ },
357
+ "query_template": {
358
+ "label": "Query template"
359
+ },
360
+ "max_number_of_triples_per_call": {
361
+ "label": "Max number of results (triples) per call",
362
+ "placeholder": "Automatic value"
363
+ },
364
+ "system_instruction": {
365
+ "label": "System instructions",
366
+ "placeholder": "Enter system instructions"
367
+ },
368
+ "user_instruction": {
369
+ "label": "User instructions",
370
+ "placeholder": "Enter user instructions"
371
+ },
372
+ "additional_query_methods": {
373
+ "label": "Additional query methods",
374
+ "method": {
375
+ "iri_discovery_search": "Full-text search in labels for IRI discovery"
376
+ }
377
+ }
378
+ },
379
+ "btn": {
380
+ "create": {
381
+ "label": "Create Agent"
382
+ },
383
+ "cancel": {
384
+ "label": "Cancel"
385
+ },
386
+ "save": {
387
+ "label": "Save"
388
+ }
389
+ }
390
+ },
391
+ "delete_agent_modal": {
392
+ "title": "Delete Agent",
393
+ "body": "Do you really want to delete the agent <b>{{agentName}}</b>?"
394
+ },
395
+ "agent_select_menu": {
396
+ "no_selection_label": "Select an agent",
397
+ "deleted_agent": "[deleted agent]",
398
+ "configure_agent_modal": {
399
+ "title": "Configure Agent",
400
+ "body": "Selected agent has no repository configured. Do you want to configure it now?"
401
+ }
402
+ },
403
+ "fat_btn": {
404
+ "create_agent": {
405
+ "label": "Create your first agent"
406
+ }
407
+ },
408
+ "btn": {
409
+ "filter": {
410
+ "tooltip": "Filter by repository",
411
+ "all": "All"
412
+ },
413
+ "edit_agent": {
414
+ "label": "Settings",
415
+ "tooltip": "Edit Agent"
416
+ },
417
+ "clone_agent": {
418
+ "label": "Clone",
419
+ "tooltip": "Clone Agent"
420
+ },
421
+ "delete_agent": {
422
+ "label": "Delete Agent",
423
+ "tooltip": "Delete Agent"
424
+ },
425
+ "create_agent": {
426
+ "label": "Create Agent",
427
+ "tooltip": "Create Agent"
428
+ },
429
+ "open_sidebar": {
430
+ "tooltip": "Open sidebar"
431
+ },
432
+ "close_sidebar": {
433
+ "tooltip": "Close sidebar"
434
+ }
435
+ },
436
+ "messages": {
437
+ "no_agents": "No agents found for the selected filter.",
438
+ "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.",
439
+ "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.",
440
+ "error_retrieval_connectors_loading": "Error loading retrieval connectors",
441
+ "error_similarity_indexes_loading": "Error loading similarity indexes",
442
+ "error_repository_config_loading": "Error loading repository configurations",
443
+ "agent_save_successfully": "The agent '{{agentName}}' was saved successfully.",
444
+ "agent_save_failure": "Failed to save the agent '{{agentName}}'."
445
+ }
446
+ },
447
+ "help.what.title": "What is this?",
448
+ "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.",
449
+ "help.how.title": "How does it work?",
450
+ "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.",
451
+ "clear.hint": "Clear the chat history",
452
+ "clear.history.confirmation": "This will clear the history conversation.",
453
+ "settings.title": "Talk to Your Graph Settings",
454
+ "settings.info": "The settings are stored in the browser only and are per repository.",
455
+ "settings.connector.id": "Retrieval connector ID",
456
+ "settings.connector.id.tooltip": "The ID of the Retrieval connector to use. If empty, the first defined connector will be used.",
457
+ "settings.query.template": "Query template",
458
+ "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.",
459
+ "settings.ground.truths": "Ground truths",
460
+ "settings.ground.truths.tooltip": "An optional list of ground truths that help the chat bot to establish context.",
461
+ "settings.topk": "Number of top results",
462
+ "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.",
463
+ "settings.echo.vector.query": "Echo vector query",
464
+ "settings.echo.vector.query.tooltip": "If enabled the bot will use the generated queries as feedback to the GPT API."
465
+ },
216
466
  "config.name.label": "Config name",
217
467
  "graph.config.required": "My graph config (required)",
218
468
  "description.text": "Description",
@@ -916,11 +1166,13 @@
916
1166
  "force.serial.pipeline": "Force serial pipeline",
917
1167
  "restore.defaults.btn": "Restore defaults",
918
1168
  "only.upload.btn": "Only upload",
1169
+ "cancel.btn": "Cancel",
919
1170
  "abort.btn": "Abort",
920
1171
  "no.files.found": "No files found",
921
1172
  "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.",
922
1173
  "auto.start": "Start import automatically",
923
1174
  "data.from.url": "Import RDF data from URL",
1175
+ "format": "Format",
924
1176
  "supported.url.with.rdf": "URL with RDF data. Supported formats are",
925
1177
  "invalid.url": "Not valid url!",
926
1178
  "gz.zip": ", as well as their .gz versions and .zip archives",
@@ -935,6 +1187,7 @@
935
1187
  "could.not.send.data": "Could not send data for import; {{data}}",
936
1188
  "could.not.send.url": "Could not send url for import; {{data}}",
937
1189
  "could.not.upload.file": "Could not upload file; {{data}}",
1190
+ "upload.file.failure": "File upload failed.",
938
1191
  "could.not.update.text": "Could not update text import; {{data}}",
939
1192
  "text.snippet.not.imported": "Text snippet was edited but has not been imported again.",
940
1193
  "graph.already.in.list": "This graph is already in the list.",
@@ -1003,7 +1256,7 @@
1003
1256
  "execution": "Import execution",
1004
1257
  "work_in_background": "Imports are executed in the background while you continue working on other things.",
1005
1258
  "to_reimport_again": "To reimport a file, URL or text snippet click the Import button again.",
1006
- "interrupt_support": "Interrupt is supported only when the location is local.",
1259
+ "interrupt_support": "Interrupt is supported only when the repository is local.",
1007
1260
  "parser_config": "Parser config options are not available for remote locations."
1008
1261
  },
1009
1262
  "on_server_import": {
@@ -1015,7 +1268,7 @@
1015
1268
  "execution": "Import execution",
1016
1269
  "work_in_background": "Imports are executed in the background while you continue working on other things.",
1017
1270
  "to_reimport_again": "To reimport a file, URL or text snippet click the Import button again.",
1018
- "interrupt_support": "Interrupt is supported only when the location is local."
1271
+ "interrupt_support": "Interrupt is supported only when the repository is local."
1019
1272
  },
1020
1273
  "on_file_size_limit": {
1021
1274
  "file_import_options_info_1": "Explore other file import options - ",
@@ -1029,6 +1282,7 @@
1029
1282
  "name": "Name",
1030
1283
  "size": "Size",
1031
1284
  "modified": "Modified",
1285
+ "uploaded": "Uploaded",
1032
1286
  "imported": "Imported",
1033
1287
  "context": "Context"
1034
1288
  },
@@ -1340,6 +1594,9 @@
1340
1594
  "repos.edit.common.settings": "Edit common settings for these repositories",
1341
1595
  "repos.view.update.licenses": "View or update license for these repositories",
1342
1596
  "repos.refresh.page.msg": " Refresh the page to retry.",
1597
+ "repositories.location.remote.graph_db.instances": "Remote GraphDB instances",
1598
+ "repositories.location.local.graph_db.instance": "Local GraphDB instance",
1599
+ "repositories.location.ontopic.instances": "Remote Ontopic instances",
1343
1600
  "no.repos.in.current.location": "There are no repositories in the current location",
1344
1601
  "connect.repo": "Connect repository",
1345
1602
  "connected.tooltip": "Connected",
@@ -1357,6 +1614,12 @@
1357
1614
  "no.connected.gdb.instances": "There are no connected GraphDB instances.",
1358
1615
  "edit.file.content": "Edit file content",
1359
1616
  "upload.file": "Upload file...",
1617
+ "common": {
1618
+ "dates": {
1619
+ "today": "Today",
1620
+ "yesterday": "Yesterday"
1621
+ }
1622
+ },
1360
1623
  "common.confirm.delete": "Confirm delete",
1361
1624
  "common.confirm.save": "Confirm save",
1362
1625
  "common.cancel.btn": "Cancel",
@@ -1506,6 +1769,37 @@
1506
1769
  "attach.remote.gdb.instance": "Attach a remote GraphDB instance",
1507
1770
  "remote.location.url": "Location URL*",
1508
1771
  "remote.location.enter.url.msg": "Enter a URL to a remote GraphDB instance",
1772
+ "remote.location.required": "Location URL is required.",
1773
+ "remote.location.ontopic.username.required": "ClientID*",
1774
+ "remote.location.ontopic.password.required": "Secret*",
1775
+ "remote.ontopic.location.enter.url.msg": "Enter a URL to an Ontopic remote instance",
1776
+ "manage.remote.location.dialog.graph_db.basic.auth.type.description": "Basic authentication requires a Username and a Password.",
1777
+ "manage.remote.location.dialog.ontopic.basic.auth.type.description": "Basic authentication requires a ClientID and a Secret.",
1778
+ "manage.remote.location.dialog.update.instance": "Edit remote instance",
1779
+ "manage.remote.location.dialog.attach.instance": "Attach a remote instance",
1780
+ "manage.remote.location.dialog.graph_db.location.instance": "GraphDB instance",
1781
+ "manage.remote.location.dialog.ontopic.location.instance": "Ontopic instance",
1782
+ "manage.remote.location.dialog.required.url": "Location URL*",
1783
+ "manage.remote.location.dialog.graph_db.url.message": "Enter a URL to a remote GraphDB instance",
1784
+ "manage.remote.location.dialog.ontopic.url.message": "Enter a URL to an Ontopic remote instance",
1785
+ "manage.remote.location.dialog.url.requred.message": "Location URL is required.",
1786
+ "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.",
1787
+ "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.",
1788
+ "manage.remote.location.dialog.auth_type.header": "Authentication type",
1789
+ "manage.remote.location.dialog.auth_type.none": "None",
1790
+ "manage.remote.location.dialog.auth_type.basic": "Basic auth",
1791
+ "manage.remote.location.dialog.auth_type.basic.description": "No authentication will be used with this location.",
1792
+ "manage.remote.location.dialog.auth_type.signature": "Signature",
1793
+ "manage.remote.location.dialog.graph_db.username.required.message": "Username*",
1794
+ "manage.remote.location.dialog.ontopic.username.required.message": "ClientID*",
1795
+ "manage.remote.location.dialog.graph_db.password.required.message": "Password*",
1796
+ "manage.remote.location.dialog.ontopic.password.required.message": "Secret*",
1797
+ "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 ",
1798
+ "manage.remote.location.dialog.auth_type.signature.description.suffix": " in the documentation.",
1799
+ "manage.remote.location.dialog.graph_db.username.placeholder": "my username",
1800
+ "manage.remote.location.dialog.ontopic.username.placeholder": "my client id",
1801
+ "manage.remote.location.dialog.graph_db.password.placeholder": "my password",
1802
+ "manage.remote.location.dialog.ontopic.password.placeholder": "my secret",
1509
1803
  "valid.remote.location.warning": "Note that the location should be a URL that points to a remote GraphDB installation, e.g.",
1510
1804
  "auth.type.header": "Authentication type",
1511
1805
  "remote.location.no.auth.used.tooltip": "No authentication used with remote location",
@@ -2080,27 +2374,6 @@
2080
2374
  "guide.confirm.cancel.message": "Are you sure you want to stop the guide?",
2081
2375
  "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.",
2082
2376
  "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.",
2083
- "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.",
2084
- "ttyg.hint": "Talk to your graph – simply ask a question!",
2085
- "ttyg.help.what.title": "What is this?",
2086
- "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.",
2087
- "ttyg.help.how.title": "How does it work?",
2088
- "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.",
2089
- "ttyg.ask.button": "Ask",
2090
- "ttyg.clear.hint": "Clear the chat history",
2091
- "ttyg.clear.history.confirmation": "This will clear the history conversation.",
2092
- "ttyg.settings.title": "Talk to Your Graph Settings",
2093
- "ttyg.settings.info": "The settings are stored in the browser only and are per repository.",
2094
- "ttyg.settings.connector.id": "Retrieval connector ID",
2095
- "ttyg.settings.connector.id.tooltip": "The ID of the Retrieval connector to use. If empty, the first defined connector will be used.",
2096
- "ttyg.settings.query.template": "Query template",
2097
- "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.",
2098
- "ttyg.settings.ground.truths": "Ground truths",
2099
- "ttyg.settings.ground.truths.tooltip": "An optional list of ground truths that help the chat bot to establish context.",
2100
- "ttyg.settings.topk": "Number of top results",
2101
- "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.",
2102
- "ttyg.settings.echo.vector.query": "Echo vector query",
2103
- "ttyg.settings.echo.vector.query.tooltip": "If enabled the bot will use the generated queries as feedback to the GPT API.",
2104
2377
  "global.operations_statuses.queries.title": "Running queries",
2105
2378
  "global.operations_statuses.updates.title": "Running updates",
2106
2379
  "global.operations_statuses.imports.title": "Running imports",