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 Multi modes selection
* multimodes state mangement
* fix: state handling of chat details of the default mode
* Added the ChatModeSwitch Component
* modes switch statemangement
* added the chatmodes switch in both view
* removed the copied text
* Handled the error scenario
* fix: speech issue between modes
* fix: Handled activespeech speech and othermessage modes switch
* used requestanimationframe instead of setTimeOut
* removed the commented code
"message": "Hi, I need help with creating a Cypher query for Neo4j.",
6
-
"user": "user",
7
-
"datetime": "01/01/2024 00:00:00"
8
-
},
9
3
{
10
4
"id": 2,
11
-
"message": " Welcome to the Neo4j Knowledge Graph Chat. You can ask questions related to documents which have been completely processed.",
12
-
"user": "chatbot",
13
-
"datetime": "01/01/2024 00:00:00"
14
-
},
15
-
{
16
-
"id": 3,
17
-
"message": "I need to find all employees who work in the IT department.",
18
-
"user": "user",
19
-
"datetime": "01/01/2024 00:00:00"
20
-
},
21
-
{
22
-
"id": 4,
23
-
"message": "Alright, you can use the following query: `MATCH (e:Employee)-[:WORKS_IN]->(d:Department {name: 'IT'}) RETURN e.name`. This query matches nodes labeled 'Employee' related to the 'IT' department and returns their names.",
24
-
"user": "chatbot",
25
-
"datetime": "01/01/2024 00:00:00"
26
-
},
27
-
{
28
-
"id": 5,
29
-
"message": "Thanks! And how do I get the total number of such employees?",
30
-
"user": "user",
31
-
"datetime": "01/01/2024 00:00:00"
32
-
},
33
-
{
34
-
"id": 6,
35
-
"message": "To get the count, use: `MATCH (e:Employee)-[:WORKS_IN]->(d:Department {name: 'IT'}) RETURN count(e)`. This counts all the distinct 'Employee' nodes related to the 'IT' department.",
5
+
"modes":{
6
+
"graph+vector+fulltext":{
7
+
"message": " Welcome to the Neo4j Knowledge Graph Chat. You can ask questions related to documents which have been completely processed."
0 commit comments