Dvwn commited on
Commit
a652cd8
·
unverified ·
1 Parent(s): a5b3518

Delete sensitive auth_db.json

Browse files
Files changed (1) hide show
  1. backend/src/database/auth_db.json +0 -82
backend/src/database/auth_db.json DELETED
@@ -1,82 +0,0 @@
1
- {
2
- "admin": {
3
- "password": "c1596a39b4dba28985cce3cb1bd83df3fb0730d09a4f28a830fda8764da71193",
4
- "history": []
5
- },
6
- "dvwn": {
7
- "password": "508f236e3d89d38a24689b345c0138f6667a6f18f305bd5f57255730c3869c0c",
8
- "history": [],
9
- "sessions": [
10
- {
11
- "title": "Which genres have more th",
12
- "messages": [
13
- {
14
- "role": "user",
15
- "content": "Which genres have more than 100 tracks? List the genre name and count."
16
- },
17
- {
18
- "role": "assistant",
19
- "content": "Failed to compute response due to error: Execution failed on sql 'SELECT G.Name, COUNT(T.TrackId) AS TrackCount FROM Genre G JOIN Album A ON G.GenreId = A.GenreId JOIN Track T ON A.AlbumId = T.AlbumId GROUP BY G.Name HAVING COUNT(T.TrackId) > 100': no such column: A.GenreId"
20
- },
21
- {
22
- "role": "user",
23
- "content": "List the first and last names of all employees who are Sales Support Agents."
24
- },
25
- {
26
- "role": "assistant",
27
- "content": "The Sales Support Agents are Jane Peacock, Margaret Park, and Steve Johnson.\n\n```sql\nSELECT FirstName, LastName FROM Employee WHERE Title = 'Sales Support Agent'\n```",
28
- "dataframe": [
29
- {
30
- "FirstName": "Jane",
31
- "LastName": "Peacock"
32
- },
33
- {
34
- "FirstName": "Margaret",
35
- "LastName": "Park"
36
- },
37
- {
38
- "FirstName": "Steve",
39
- "LastName": "Johnson"
40
- }
41
- ]
42
- }
43
- ]
44
- },
45
- {
46
- "title": "Find the total number of ",
47
- "messages": [
48
- {
49
- "role": "user",
50
- "content": "Find the total number of items sold for each media type."
51
- },
52
- {
53
- "role": "assistant",
54
- "content": "There was a total of 5 items sold across all media types.\n\n```sql\nSELECT mt.Name, COUNT(*) AS total_items_sold FROM MediaType mt JOIN (SELECT t.MediaTypeId, COUNT(*) AS items_sold FROM Track t JOIN Album a ON t.AlbumId = a.AlbumId GROUP BY t.MediaTypeId) AS m ON mt.MediaTypeId = m.MediaTypeId GROUP BY mt.Name;\n```",
55
- "dataframe": [
56
- {
57
- "Name": "AAC audio file",
58
- "total_items_sold": 1
59
- },
60
- {
61
- "Name": "MPEG audio file",
62
- "total_items_sold": 1
63
- },
64
- {
65
- "Name": "Protected AAC audio file",
66
- "total_items_sold": 1
67
- },
68
- {
69
- "Name": "Protected MPEG-4 video file",
70
- "total_items_sold": 1
71
- },
72
- {
73
- "Name": "Purchased AAC audio file",
74
- "total_items_sold": 1
75
- }
76
- ]
77
- }
78
- ]
79
- }
80
- ]
81
- }
82
- }