File size: 936 Bytes
03815d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""Chakravyuh demo server — Gradio UI + replay curator."""

from server.episode_curator import (
    AGENT_COLORS,
    CURATED_EPISODES,
    AgentState,
    AnalyzerSnapshot,
    BankSnapshot,
    CuratedEpisode,
    ReplayedEpisode,
    compute_agent_states,
    format_agent_cards_html,
    format_attack_timeline_html,
    format_bank_panel,
    format_chat_html,
    format_suspicion_timeline,
    max_turn,
    outcome_badge,
    replay,
    replay_all,
    suspicion_score_for_turn,
)

__all__ = [
    "AGENT_COLORS",
    "AgentState",
    "AnalyzerSnapshot",
    "BankSnapshot",
    "CURATED_EPISODES",
    "CuratedEpisode",
    "ReplayedEpisode",
    "compute_agent_states",
    "format_agent_cards_html",
    "format_attack_timeline_html",
    "format_bank_panel",
    "format_chat_html",
    "format_suspicion_timeline",
    "max_turn",
    "outcome_badge",
    "replay",
    "replay_all",
    "suspicion_score_for_turn",
]