-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_state.json
More file actions
151 lines (136 loc) · 3.17 KB
/
project_state.json
File metadata and controls
151 lines (136 loc) · 3.17 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"_comment": "Example project state file showing the structure used to track workflow progress",
"project_id": "epistola-de-corpore-20251215",
"state": "VALIDATING",
"created_at": "2025-12-15T09:00:00Z",
"updated_at": "2025-12-15T11:45:00Z",
"source": {
"volume": "145",
"title_latin": "Epistola de Corpore et Sanguine Domini",
"title_english": "Letter on the Body and Blood of the Lord",
"author": "Ratramnus of Corbie",
"century": 9,
"estimated_words": 8500,
"estimated_duration_minutes": 28
},
"research": {
"completed_at": "2025-12-15T09:35:00Z",
"model": "openai/o4-mini-deep-research",
"cost_usd": 1.45,
"word_count": 2847,
"citations_count": 14,
"images": [
{
"url": "https://example.org/manuscript-image.jpg",
"description": "9th-century manuscript showing Eucharistic debate",
"license": "public domain",
"selected": true
}
]
},
"translation": {
"completed_at": "2025-12-15T11:30:00Z",
"model": "anthropic/claude-sonnet-4",
"cost_usd": 3.21,
"word_count": 7200,
"chunk_count": 45,
"validation": {
"passed": null,
"checked_at": null,
"start_match": null,
"end_match": null,
"remaining_chars": null,
"remaining_pct": null
}
},
"audio": {
"completed_at": null,
"duration_seconds": null,
"file_size_bytes": null,
"cost_usd": 0
},
"video": {
"job_started_at": null,
"completed_at": null,
"file_size_bytes": null,
"last_size_check": null
},
"cover": {
"completed_at": null,
"prompt": null,
"cost_usd": 0
},
"thumbnail": {
"completed_at": null,
"text": null
},
"youtube": {
"video_id": null,
"uploaded_at": null,
"visibility": null,
"thumbnail_set": false,
"metadata": {
"title": null,
"description": null,
"tags": []
}
},
"archive_org": {
"identifier": null,
"uploaded_at": null,
"url": null
},
"github": {
"committed_at": null,
"url": null
},
"blog": {
"generated_at": null,
"url": null,
"listed": false,
"publish_date": null
},
"review": {
"presented_at": null,
"approved_at": null,
"approved_by": null,
"fixes_requested": []
},
"costs": {
"research_usd": 1.45,
"translation_usd": 3.21,
"audio_usd": 0,
"images_usd": 0,
"total_usd": 4.66
},
"notes": [
{
"timestamp": "2025-12-15T09:00:00Z",
"note": "Project created"
},
{
"timestamp": "2025-12-15T09:00:30Z",
"note": "State transition: SELECTING → RESEARCHING"
},
{
"timestamp": "2025-12-15T09:35:00Z",
"note": "Deep research completed: 2847 words, 14 citations"
},
{
"timestamp": "2025-12-15T09:35:15Z",
"note": "State transition: RESEARCHING → TRANSLATING"
},
{
"timestamp": "2025-12-15T11:30:00Z",
"note": "Translation completed: 45 chunks, 7200 words"
},
{
"timestamp": "2025-12-15T11:30:10Z",
"note": "State transition: TRANSLATING → VALIDATING"
},
{
"timestamp": "2025-12-15T11:45:00Z",
"note": "Awaiting validation run"
}
]
}