James4Ever0 commited on
Commit
8e4af05
1 Parent(s): 235be77

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -2
README.md CHANGED
@@ -2,6 +2,64 @@
2
  license: wtfpl
3
  ---
4
 
5
- Cybergod dataset, created by interacting terminal with Godlang.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
- Consisted of random keystrokes, random mouse actions and terminal observation.
 
2
  license: wtfpl
3
  ---
4
 
5
+ The terminal dataset is comprised of an unique trajectory identifier, observations of the terminal, and actions taken by the agent.
6
+
7
+ The observation can either be the full view of the terminal or only the updated lines, with line numbers surrounded by square brackets.
8
+
9
+ The actions taken by the agent is called `Godlang`, a language which can empower LLM to interface with TUI and GUI.
10
+
11
+
12
+ Preview of the terminal dataset:
13
+
14
+ ```
15
+ ====================JSON RESPONSES====================
16
+ identifier received from websocket 77bf0b60-056d-4a15-afa4-62431d6ba773
17
+ ====================JSON RESPONSES====================
18
+ Cursur at: (0, 0)
19
+ Updated content:
20
+ [0 ]
21
+ [1 ]
22
+ [2 ]
23
+ [3 ]
24
+ [4 ]
25
+ [5 ]
26
+ [6 ]
27
+ [7 ]
28
+ [8 ]
29
+ [9 ]
30
+ [10]
31
+ [11]
32
+ [12]
33
+ [13]
34
+ [14]
35
+ [15]
36
+ [16]
37
+ [17]
38
+ [18]
39
+ [19]
40
+ [20]
41
+ [21]
42
+ [22]
43
+ [23]
44
+ Updated lines: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
45
+ Fullscreen:
46
+ ====================JSON RESPONSES====================
47
+ Cursur at: (0, 4)
48
+ Updated content:
49
+ [0 ] / #
50
+ Updated lines: 0
51
+ Fullscreen:
52
+ / #
53
+ VIEW
54
+ SPECIAL CTRL+C
55
+ SPECIAL TAB
56
+ VIEW
57
+ SPECIAL CTRL+6
58
+ Command list: ['VIEW', 'SPECIAL CTRL+C', 'SPECIAL TAB', 'VIEW', 'SPECIAL CTRL+6']
59
+ Regular sleep for 0.200000 seconds
60
+ Exiting reading action list because of 'VIEW' command
61
+ WAIT 0.548
62
+ TYPE n
63
+ REM Random actions
64
+ ```
65