copilot-cli-trace-deck 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,61 @@
1
+ from __future__ import annotations
2
+
3
+ from dataclasses import dataclass
4
+
5
+
6
+ @dataclass(frozen=True)
7
+ class SessionPreview:
8
+ session_id: str
9
+ title: str
10
+ is_active: bool = False
11
+
12
+
13
+ @dataclass(frozen=True)
14
+ class SessionSummary:
15
+ session_id: str
16
+ title: str
17
+ created_label: str
18
+ updated_label: str
19
+ session_type: str
20
+ location: str
21
+ status: str
22
+ model_name: str
23
+ repository: str
24
+ branch: str
25
+ model_turns: int
26
+ tool_calls: int
27
+ total_input_tokens: int
28
+ total_output_tokens: int
29
+ total_cached_input_tokens: int
30
+ total_tokens: int
31
+ error_count: int
32
+
33
+
34
+ @dataclass(frozen=True)
35
+ class SessionLogSection:
36
+ title: str
37
+ content: str
38
+
39
+
40
+ @dataclass(frozen=True)
41
+ class SessionLogEntry:
42
+ index: int
43
+ created_label: str
44
+ name: str
45
+ event_type: str
46
+ details: str
47
+ is_error: bool
48
+ sections: list[SessionLogSection]
49
+
50
+
51
+ @dataclass(frozen=True)
52
+ class SessionFlowNode:
53
+ index: int
54
+ kind: str
55
+ title: str
56
+ subtitle: str
57
+ detail: str
58
+ meta: str
59
+ log_index: int | None = None
60
+ status: str = "neutral"
61
+ count: int = 1
@@ -0,0 +1,3 @@
1
+ from .web.server import DEFAULT_SESSION_ROOT, TraceDeckHandler, main, parse_args
2
+
3
+ __all__ = ["DEFAULT_SESSION_ROOT", "TraceDeckHandler", "main", "parse_args"]
@@ -0,0 +1 @@
1
+ """Web rendering and HTTP server helpers."""