-
Notifications
You must be signed in to change notification settings - Fork 775
Expand file tree
/
Copy pathtui_commands
More file actions
65 lines (41 loc) · 1.44 KB
/
tui_commands
File metadata and controls
65 lines (41 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
🎯 Quick Test Commands
1. Browse All Executions (Browser Mode)
just viz
2. View Specific Execution (Detail Mode)
# View your most recent execution
just viz 646cdb9b-63f2-4ccc-92f6-7bcc360d7a3a
3. Filter by Profile
# View all crypto_agent executions
just viz "" "" crypto_agent
# View all general profile executions
just viz "" "" general
# View all default profile executions
just viz "" "" default
4. Filter by Experiment
# View all crypto agent experiment executions
just viz "" "ROMA-Crypto-Agent-Mapped"
# View all general agent experiment executions
just viz "" "ROMA-General-Agent"
# View all default ROMA-DSPy executions
just viz "" "ROMA-DSPy"
5. Filter by Status
# View all completed executions
just viz "" "" "" completed
# View all running executions
just viz "" "" "" running
# View all failed executions (for debugging)
just viz "" "" "" failed
6. Combined Filters (Most Powerful)
# Completed crypto agent executions
just viz "" "ROMA-Crypto-Agent-Mapped" crypto_agent completed
# Running crypto_agent profile executions
just viz "" "" crypto_agent running
🚀 Start Here (Recommended Order)
# 1. Browse all executions (see what's available)
just viz
# 2. Filter by your most-used profile
just viz "" "" crypto_agent
# 3. View a specific execution in detail
just viz 45d99ba9-8df3-476d-b562-2f47dfbcd2d1
# 4. Check for any failures
just viz "" "" "" failed