You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* added tooltips to chat mode menu
* addition of description to menu
* 741-tooltips-to-selectOptions
* menu changes
* acommunities name change
* close changes
* name changes
* format fixes
description: 'Utilizes vector indexing on text chunks to enable semantic similarity search.',
78
+
},
79
+
{
80
+
mode: 'graph',
81
+
description:
82
+
'Leverages text-to-cypher translation to query a database and retrieve relevant data, ensuring a highly targeted and contextually accurate response.',
83
+
},
84
+
{
85
+
mode: 'graph+vector',
86
+
description:
87
+
'Combines vector indexing on text chunks with graph connections, enhancing search results with contextual relevance by considering relationships between concepts.',
88
+
},
89
+
{
90
+
mode: 'fulltext',
91
+
description:
92
+
'Employs a fulltext index on text chunks for rapid keyword-based search, efficiently identifying documents containing specific words or phrases.',
93
+
},
94
+
{
95
+
mode: 'graph+vector+fulltext',
96
+
description:
97
+
'Merges vector indexing, graph connections, and fulltext indexing for a comprehensive search approach, combining semantic similarity, contextual relevance, and keyword-based search for optimal results.',
98
+
},
99
+
{
100
+
mode: 'entity search+vector',
101
+
description:
102
+
'Combines entity node vector indexing with graph connections for accurate entity-based search, providing the most relevant response.',
return'Utilizes vector indexing on text chunks to enable semantic similarity search.';
421
+
case'graph':
422
+
return'Leverages text-to-cypher translation to query a database and retrieve relevant data, ensuring a highly targeted and contextually accurate response.';
423
+
case'graph+vector':
424
+
return'Combines vector indexing on text chunks with graph connections, enhancing search results with contextual relevance by considering relationships between concepts.';
425
+
case'fulltext':
426
+
return'Employs a fulltext index on text chunks for rapid keyword-based search, efficiently identifying documents containing specific words or phrases.';
427
+
case'graph+vector+fulltext':
428
+
return'Merges vector indexing, graph connections, and fulltext indexing for a comprehensive search approach, combining semantic similarity, contextual relevance, and keyword-based search for optimal results.';
429
+
case'entity search+vector':
430
+
return'Combines entity node vector indexing with graph connections for accurate entity-based search, providing the most relevant response.';
431
+
default:
432
+
return'Chat mode description not available';// Fallback description
0 commit comments