edsl 0.1.51__py3-none-any.whl → 0.1.52__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.
- edsl/__init__.py +45 -34
- edsl/__version__.py +1 -1
- edsl/conversation/Conversation.py +2 -1
- edsl/coop/coop.py +2 -0
- edsl/interviews/answering_function.py +20 -21
- edsl/interviews/exception_tracking.py +4 -3
- edsl/interviews/interview_task_manager.py +5 -2
- edsl/invigilators/invigilators.py +32 -4
- edsl/jobs/html_table_job_logger.py +494 -257
- edsl/jobs/jobs_status_enums.py +1 -0
- edsl/jobs/remote_inference.py +46 -12
- edsl/language_models/language_model.py +148 -146
- edsl/results/results.py +31 -2
- edsl/tasks/task_history.py +45 -8
- edsl/templates/error_reporting/base.html +37 -4
- edsl/templates/error_reporting/exceptions_table.html +105 -33
- edsl/templates/error_reporting/interview_details.html +130 -126
- edsl/templates/error_reporting/overview.html +21 -25
- edsl/templates/error_reporting/report.css +215 -46
- edsl/templates/error_reporting/report.js +122 -20
- {edsl-0.1.51.dist-info → edsl-0.1.52.dist-info}/METADATA +1 -1
- {edsl-0.1.51.dist-info → edsl-0.1.52.dist-info}/RECORD +25 -25
- {edsl-0.1.51.dist-info → edsl-0.1.52.dist-info}/LICENSE +0 -0
- {edsl-0.1.51.dist-info → edsl-0.1.52.dist-info}/WHEEL +0 -0
- {edsl-0.1.51.dist-info → edsl-0.1.52.dist-info}/entry_points.txt +0 -0
@@ -1,74 +1,243 @@
|
|
1
|
+
/* Base styles */
|
2
|
+
:root {
|
3
|
+
--primary-color: #3f51b5;
|
4
|
+
--secondary-color: #5c6bc0;
|
5
|
+
--success-color: #4caf50;
|
6
|
+
--error-color: #f44336;
|
7
|
+
--warning-color: #ff9800;
|
8
|
+
--text-color: #333;
|
9
|
+
--light-bg: #f5f7fa;
|
10
|
+
--border-color: #e0e0e0;
|
11
|
+
--header-bg: #f9f9f9;
|
12
|
+
--card-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
13
|
+
--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
14
|
+
}
|
15
|
+
|
1
16
|
body {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
17
|
+
font-family: var(--font-family);
|
18
|
+
line-height: 1.6;
|
19
|
+
color: var(--text-color);
|
20
|
+
background-color: var(--light-bg);
|
21
|
+
margin: 0;
|
22
|
+
padding: 20px;
|
7
23
|
}
|
8
24
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
background-color: #e3f2fd;
|
14
|
-
border-left: 5px solid #2196f3;
|
25
|
+
/* Container */
|
26
|
+
.container {
|
27
|
+
max-width: 1200px;
|
28
|
+
margin: 0 auto;
|
15
29
|
}
|
16
30
|
|
31
|
+
/* Headings */
|
32
|
+
h1, h2, h3, h4, h5, h6 {
|
33
|
+
color: var(--primary-color);
|
34
|
+
margin-top: 1em;
|
35
|
+
margin-bottom: 0.5em;
|
36
|
+
}
|
37
|
+
|
38
|
+
/* Question heading */
|
17
39
|
.question {
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
40
|
+
font-size: 18px;
|
41
|
+
font-weight: 600;
|
42
|
+
margin-bottom: 15px;
|
43
|
+
color: #333;
|
44
|
+
background-color: #fef8e2;
|
45
|
+
border: 1px solid #fbebbb;
|
46
|
+
border-radius: 4px;
|
47
|
+
padding: 12px;
|
23
48
|
}
|
24
49
|
|
50
|
+
/* Exception detail card */
|
25
51
|
.exception-detail {
|
26
|
-
|
27
|
-
|
28
|
-
|
52
|
+
background-color: white;
|
53
|
+
border-radius: 8px;
|
54
|
+
margin-bottom: 20px;
|
55
|
+
box-shadow: var(--card-shadow);
|
56
|
+
overflow: hidden;
|
57
|
+
border: 1px solid var(--border-color);
|
29
58
|
}
|
30
59
|
|
31
60
|
.exception-header {
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
61
|
+
display: flex;
|
62
|
+
justify-content: space-between;
|
63
|
+
align-items: center;
|
64
|
+
padding: 15px;
|
65
|
+
background-color: rgba(244, 67, 54, 0.08);
|
66
|
+
border-bottom: 1px solid rgba(244, 67, 54, 0.2);
|
67
|
+
cursor: pointer;
|
68
|
+
transition: background-color 0.2s;
|
69
|
+
}
|
70
|
+
|
71
|
+
.exception-header:hover {
|
72
|
+
background-color: rgba(244, 67, 54, 0.12);
|
73
|
+
}
|
74
|
+
|
75
|
+
.exception-exception {
|
76
|
+
font-weight: 600;
|
77
|
+
color: var(--error-color);
|
37
78
|
}
|
38
79
|
|
39
80
|
.exception-content {
|
40
|
-
|
41
|
-
|
81
|
+
padding: 0;
|
82
|
+
max-height: 0;
|
83
|
+
overflow: hidden;
|
84
|
+
transition: max-height 0.3s ease-out;
|
42
85
|
}
|
43
86
|
|
44
|
-
.exception-content.
|
45
|
-
|
87
|
+
.exception-content.expanded {
|
88
|
+
max-height: 5000px;
|
89
|
+
padding: 20px;
|
90
|
+
transition: max-height 0.5s ease-in;
|
46
91
|
}
|
47
92
|
|
48
|
-
|
49
|
-
|
50
|
-
|
93
|
+
/* Simple chevron indicator */
|
94
|
+
.chevron {
|
95
|
+
display: inline-block;
|
96
|
+
width: 20px;
|
97
|
+
height: 20px;
|
98
|
+
position: relative;
|
99
|
+
margin-left: 8px;
|
51
100
|
}
|
52
101
|
|
53
|
-
.
|
54
|
-
|
55
|
-
|
102
|
+
.chevron::before {
|
103
|
+
content: '';
|
104
|
+
position: absolute;
|
105
|
+
width: 8px;
|
106
|
+
height: 8px;
|
107
|
+
border-style: solid;
|
108
|
+
border-width: 0 2px 2px 0;
|
109
|
+
border-color: #666;
|
110
|
+
transform: rotate(45deg);
|
111
|
+
top: 4px;
|
112
|
+
transition: transform 0.2s;
|
113
|
+
}
|
114
|
+
|
115
|
+
.exception-header[aria-expanded="true"] .chevron::before {
|
116
|
+
transform: rotate(-135deg);
|
117
|
+
top: 8px;
|
118
|
+
}
|
119
|
+
|
120
|
+
/* Section headers */
|
121
|
+
.section-header {
|
122
|
+
border-bottom: 2px solid var(--primary-color);
|
123
|
+
padding-bottom: 8px;
|
124
|
+
margin: 24px 0 16px 0;
|
125
|
+
display: flex;
|
126
|
+
justify-content: space-between;
|
127
|
+
align-items: center;
|
128
|
+
}
|
129
|
+
|
130
|
+
.section-header h3 {
|
131
|
+
color: var(--primary-color);
|
132
|
+
font-weight: 500;
|
133
|
+
font-size: 18px;
|
134
|
+
margin: 0;
|
135
|
+
}
|
136
|
+
|
137
|
+
.error-header {
|
138
|
+
border-bottom-color: var(--error-color);
|
56
139
|
}
|
57
140
|
|
58
|
-
.
|
59
|
-
|
60
|
-
font-style: italic;
|
61
|
-
color: #555;
|
141
|
+
.error-header h3 {
|
142
|
+
color: var(--error-color);
|
62
143
|
}
|
63
144
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
145
|
+
/* Details tables */
|
146
|
+
.details-table {
|
147
|
+
width: 100%;
|
148
|
+
border-collapse: collapse;
|
149
|
+
margin-bottom: 16px;
|
150
|
+
table-layout: fixed;
|
70
151
|
}
|
71
152
|
|
72
|
-
.
|
73
|
-
|
153
|
+
.details-table th {
|
154
|
+
width: 200px;
|
155
|
+
text-align: left;
|
156
|
+
padding: 12px;
|
157
|
+
background-color: #f9f9f9;
|
158
|
+
font-weight: 500;
|
159
|
+
border-bottom: 1px solid var(--border-color);
|
160
|
+
vertical-align: top;
|
161
|
+
}
|
162
|
+
|
163
|
+
.details-table td {
|
164
|
+
padding: 12px;
|
165
|
+
border-bottom: 1px solid var(--border-color);
|
166
|
+
word-wrap: break-word;
|
167
|
+
overflow-wrap: break-word;
|
168
|
+
}
|
169
|
+
|
170
|
+
.details-table tr:last-child th,
|
171
|
+
.details-table tr:last-child td {
|
172
|
+
border-bottom: none;
|
173
|
+
}
|
174
|
+
|
175
|
+
.details-table tr:nth-child(even) {
|
176
|
+
background-color: rgba(0, 0, 0, 0.02);
|
177
|
+
}
|
178
|
+
|
179
|
+
/* Code blocks */
|
180
|
+
pre {
|
181
|
+
background-color: #f8f9fa;
|
182
|
+
border: 1px solid var(--border-color);
|
183
|
+
border-radius: 4px;
|
184
|
+
padding: 12px;
|
185
|
+
overflow: auto;
|
186
|
+
max-height: 300px;
|
187
|
+
font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
|
188
|
+
font-size: 13px;
|
189
|
+
white-space: pre-wrap;
|
190
|
+
margin: 0;
|
191
|
+
width: 100%;
|
192
|
+
}
|
193
|
+
|
194
|
+
.code-block {
|
195
|
+
font-family: monospace;
|
196
|
+
padding: 16px;
|
197
|
+
background-color: #f8f9fa;
|
198
|
+
border: 1px solid #ddd;
|
199
|
+
border-radius: 4px;
|
200
|
+
overflow-x: auto;
|
201
|
+
max-height: 300px;
|
202
|
+
margin-top: 0;
|
203
|
+
}
|
204
|
+
|
205
|
+
.traceback {
|
206
|
+
font-style: italic;
|
207
|
+
font-size: 13px;
|
208
|
+
}
|
209
|
+
|
210
|
+
/* Copy button */
|
211
|
+
.copy-button {
|
212
|
+
background-color: var(--primary-color);
|
213
|
+
color: white;
|
214
|
+
border: none;
|
215
|
+
padding: 6px 12px;
|
216
|
+
border-radius: 4px;
|
217
|
+
cursor: pointer;
|
218
|
+
font-size: 14px;
|
219
|
+
}
|
220
|
+
|
221
|
+
.copy-button:hover {
|
222
|
+
background-color: #303f9f;
|
223
|
+
}
|
224
|
+
|
225
|
+
/* Responsive design */
|
226
|
+
@media (max-width: 768px) {
|
227
|
+
.details-table {
|
228
|
+
display: block;
|
229
|
+
overflow-x: auto;
|
230
|
+
}
|
231
|
+
|
232
|
+
.details-table th {
|
233
|
+
width: 140px;
|
234
|
+
}
|
235
|
+
|
236
|
+
.exception-header {
|
237
|
+
padding: 12px;
|
238
|
+
}
|
239
|
+
|
240
|
+
.exception-content.expanded {
|
241
|
+
padding: 15px;
|
242
|
+
}
|
74
243
|
}
|
@@ -1,25 +1,127 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
// Toggle functionality for exception details
|
2
|
+
function toggleExceptionDetail(header) {
|
3
|
+
const detail = header.closest('.exception-detail');
|
4
|
+
const content = detail.querySelector('.exception-content');
|
5
|
+
const expanded = header.getAttribute('aria-expanded') === 'true';
|
6
|
+
|
7
|
+
if (expanded) {
|
8
|
+
content.classList.remove('expanded');
|
9
|
+
header.setAttribute('aria-expanded', 'false');
|
10
|
+
} else {
|
11
|
+
content.classList.add('expanded');
|
12
|
+
header.setAttribute('aria-expanded', 'true');
|
13
|
+
}
|
14
|
+
}
|
8
15
|
|
9
|
-
|
10
|
-
|
11
|
-
|
16
|
+
// Copy code functionality
|
17
|
+
function copyCode(button) {
|
18
|
+
console.log("Copy button clicked");
|
19
|
+
|
20
|
+
// Find the code block - look for pre/code elements after the button's parent
|
21
|
+
const section = button.closest('div');
|
22
|
+
const codeBlock = section.nextElementSibling;
|
23
|
+
|
24
|
+
if (codeBlock) {
|
25
|
+
// Get the text content
|
26
|
+
let textToCopy = '';
|
27
|
+
if (codeBlock.tagName === 'PRE') {
|
28
|
+
textToCopy = codeBlock.textContent || '';
|
29
|
+
} else if (codeBlock.tagName === 'TEXTAREA') {
|
30
|
+
textToCopy = codeBlock.value || '';
|
31
|
+
}
|
32
|
+
|
33
|
+
// Use clipboard API if available, fallback to execCommand
|
34
|
+
if (navigator.clipboard && navigator.clipboard.writeText) {
|
35
|
+
navigator.clipboard.writeText(textToCopy)
|
36
|
+
.then(() => {
|
37
|
+
console.log("Text copied to clipboard successfully");
|
38
|
+
showCopiedFeedback(button);
|
39
|
+
})
|
40
|
+
.catch(err => {
|
41
|
+
console.error("Failed to copy text: ", err);
|
42
|
+
fallbackCopy(textToCopy, button);
|
12
43
|
});
|
13
|
-
}
|
14
|
-
|
15
|
-
}
|
44
|
+
} else {
|
45
|
+
fallbackCopy(textToCopy, button);
|
46
|
+
}
|
47
|
+
} else {
|
48
|
+
console.error("Code block not found");
|
49
|
+
}
|
50
|
+
}
|
16
51
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
52
|
+
// Fallback copy method using document.execCommand
|
53
|
+
function fallbackCopy(text, button) {
|
54
|
+
// Create temporary textarea
|
55
|
+
const textarea = document.createElement('textarea');
|
56
|
+
textarea.value = text;
|
57
|
+
textarea.style.position = 'fixed'; // Avoid scrolling to bottom
|
58
|
+
document.body.appendChild(textarea);
|
59
|
+
textarea.select();
|
60
|
+
|
61
|
+
try {
|
62
|
+
const successful = document.execCommand('copy');
|
63
|
+
if (successful) {
|
64
|
+
console.log("Fallback copy successful");
|
65
|
+
showCopiedFeedback(button);
|
66
|
+
} else {
|
67
|
+
console.error("Fallback copy failed");
|
68
|
+
}
|
69
|
+
} catch (err) {
|
70
|
+
console.error("Fallback copy error:", err);
|
71
|
+
}
|
72
|
+
|
73
|
+
document.body.removeChild(textarea);
|
74
|
+
}
|
22
75
|
|
23
|
-
|
24
|
-
|
76
|
+
// Show copied feedback on button
|
77
|
+
function showCopiedFeedback(button) {
|
78
|
+
const originalText = button.textContent;
|
79
|
+
button.textContent = 'Copied!';
|
80
|
+
button.disabled = true;
|
81
|
+
|
82
|
+
setTimeout(() => {
|
83
|
+
button.textContent = originalText;
|
84
|
+
button.disabled = false;
|
85
|
+
}, 2000);
|
25
86
|
}
|
87
|
+
|
88
|
+
// Initialize all headers on page load
|
89
|
+
document.addEventListener('DOMContentLoaded', function() {
|
90
|
+
console.log("DOM loaded, initializing exception toggles");
|
91
|
+
|
92
|
+
// Set initial states for all exception contents
|
93
|
+
const exceptionContents = document.querySelectorAll('.exception-content');
|
94
|
+
console.log(`Found ${exceptionContents.length} exception contents`);
|
95
|
+
|
96
|
+
exceptionContents.forEach(content => {
|
97
|
+
content.classList.remove('expanded');
|
98
|
+
});
|
99
|
+
|
100
|
+
// Set aria attributes on headers and add click events
|
101
|
+
const exceptionHeaders = document.querySelectorAll('.exception-header');
|
102
|
+
console.log(`Found ${exceptionHeaders.length} exception headers`);
|
103
|
+
|
104
|
+
exceptionHeaders.forEach(header => {
|
105
|
+
header.setAttribute('aria-expanded', 'false');
|
106
|
+
|
107
|
+
// Add click listener
|
108
|
+
header.addEventListener('click', function(e) {
|
109
|
+
console.log("Header clicked, toggling exception detail");
|
110
|
+
toggleExceptionDetail(this);
|
111
|
+
});
|
112
|
+
});
|
113
|
+
|
114
|
+
// Set up copy buttons
|
115
|
+
const copyButtons = document.querySelectorAll('.copy-button');
|
116
|
+
console.log(`Found ${copyButtons.length} copy buttons`);
|
117
|
+
|
118
|
+
copyButtons.forEach(button => {
|
119
|
+
// Add click listener
|
120
|
+
button.addEventListener('click', function(e) {
|
121
|
+
console.log("Copy button clicked");
|
122
|
+
e.preventDefault();
|
123
|
+
e.stopPropagation();
|
124
|
+
copyCode(this);
|
125
|
+
});
|
126
|
+
});
|
127
|
+
});
|
@@ -1,5 +1,5 @@
|
|
1
|
-
edsl/__init__.py,sha256=
|
2
|
-
edsl/__version__.py,sha256=
|
1
|
+
edsl/__init__.py,sha256=SXi_Zm4kf6H2WW_YeTuF6zRNZEWKzpKa7NRXUzn2Ty4,4593
|
2
|
+
edsl/__version__.py,sha256=xEFLBJ_IHewFRxpAOMcKAhQVPVf06lsExSa2472N2G8,23
|
3
3
|
edsl/agents/__init__.py,sha256=AyhfXjygRHT1Pd9w16lcu5Bu0jnBmMPz86aKP1uRL3Y,93
|
4
4
|
edsl/agents/agent.py,sha256=svTVvvg9eCMUhnb49Bxsf9nAwXragtRaeBkyB6q89EE,54423
|
5
5
|
edsl/agents/agent_list.py,sha256=JA39_6RSmiD2mqJgWr2NWovNxNmu4mhZbYmn5be87NQ,21572
|
@@ -31,14 +31,14 @@ edsl/cli.py,sha256=7sg3Ib-GP8fLj4k2j97AWIDOC4TeI_uD9mYuqYvFFvI,1082
|
|
31
31
|
edsl/config/__init__.py,sha256=gtGWj4XNwfvicezcyqcFbCcApd_i5-jBaFc-HRC9LFU,317
|
32
32
|
edsl/config/config_class.py,sha256=7c9HFsWRAwwbZaaVeOcqcSI45Q1OYvbGmmeQWGmSLwo,7995
|
33
33
|
edsl/config.py,sha256=bGl4u37pgyOUVPaqloZQ-92qG7TmC4Den7KA-icXkcg,165
|
34
|
-
edsl/conversation/Conversation.py,sha256=
|
34
|
+
edsl/conversation/Conversation.py,sha256=5mBvzXfpVjJI2yNTWdeuxvgtVG22-_zgBmRjY9qcJ38,9706
|
35
35
|
edsl/conversation/car_buying.py,sha256=JVf4JUMwXZSyuQEBnPnamxeLL2FmXK70x3KKaQVYxkQ,1913
|
36
36
|
edsl/conversation/chips.py,sha256=eEehLLQwm06QOH4B-kD7JsN7hFqQrkMOKLnjdNqqJas,3296
|
37
37
|
edsl/conversation/exceptions.py,sha256=DoUCg-ymqGOjOl0cpGT8-sNRVsr3SEwdxGAKtdeZ2iI,1934
|
38
38
|
edsl/conversation/mug_negotiation.py,sha256=do3PTykM6A2cDGOcsohlevRgLpCICoPx8B0WIYe6hy8,2518
|
39
39
|
edsl/conversation/next_speaker_utilities.py,sha256=bqr5JglCd6bdLc9IZ5zGOAsmN2F4ERiubSMYvZIG7qk,3629
|
40
40
|
edsl/coop/__init__.py,sha256=DU2w1Nu8q6tMAa3xoPC722RrvGhmB_UgUUBJDUywsKY,1542
|
41
|
-
edsl/coop/coop.py,sha256=
|
41
|
+
edsl/coop/coop.py,sha256=Dl2rpuu8g07AakPBVthVDMGxsSKcZN8NNyUbJQLh1Vk,64647
|
42
42
|
edsl/coop/coop_functions.py,sha256=d31kddfj9MVZaMhqwUvkSIBwrdCTQglIvFWVfUr4NuE,688
|
43
43
|
edsl/coop/ep_key_handling.py,sha256=X0tskEaYKsRIbFUijaCL69uHYpLJcLbYFITzAu3PGJE,7872
|
44
44
|
edsl/coop/exceptions.py,sha256=EY3eNTeJM15VzFnag93hgmiqn4pR3Y-6nS9ixKGIhM8,8874
|
@@ -99,20 +99,20 @@ edsl/instructions/instruction_collection.py,sha256=q8BBsMXIrjrZBxphmJ1W95fbauHeJ
|
|
99
99
|
edsl/instructions/instruction_handler.py,sha256=MXy0LSyAUE5H2G8Pdhs-WerZM8VWGqNRw816IBO66vo,4252
|
100
100
|
edsl/interviews/ReportErrors.py,sha256=5NC6fFGaVe6Qk4gnFd7fUFRsw9MKb7g4MFOr-EblS0o,1728
|
101
101
|
edsl/interviews/__init__.py,sha256=BC6NBomroZEc8uwOeZBMtVuXwAVQzTzm7kkgDBqEBic,328
|
102
|
-
edsl/interviews/answering_function.py,sha256=
|
103
|
-
edsl/interviews/exception_tracking.py,sha256=
|
102
|
+
edsl/interviews/answering_function.py,sha256=Pghd5Tx95xASWB9DS2P85mhSponNpKZYmlYd88Eiwqk,9599
|
103
|
+
edsl/interviews/exception_tracking.py,sha256=Vgc6UVnzRdln_ZrxxcZVDGC7B0u_cQOQHpaJ0I2TWvo,10201
|
104
104
|
edsl/interviews/exceptions.py,sha256=qID-2HnSHJt5DyxBQd4698GZfTEu8rwk_VbIrBHcIRc,2626
|
105
105
|
edsl/interviews/interview.py,sha256=_ZeIhDbPZSohc4t4a6G-DzVs6_poqs3om5bEDvVVxPo,25225
|
106
106
|
edsl/interviews/interview_status_dictionary.py,sha256=0ZvXLusfOA8xD_Fco4PjEBGwmR2sizHOGijTQI8RrI8,3031
|
107
107
|
edsl/interviews/interview_status_enum.py,sha256=KJ-1yLAHdX-p8TiFnM0M3v1tnBwkq4aMCuBX6-ytrI8,229
|
108
108
|
edsl/interviews/interview_status_log.py,sha256=sRiQ9kIT1WcF-8beETn6E7IsdRRrfbco-yjdAjkXncw,3587
|
109
|
-
edsl/interviews/interview_task_manager.py,sha256=
|
109
|
+
edsl/interviews/interview_task_manager.py,sha256=wPi5izhsVK5wI5HfMXMLL5NIoucHNCoGXfRuRzI-wYE,3665
|
110
110
|
edsl/interviews/request_token_estimator.py,sha256=VATjVBcFyEyc9fhqySo1jIRm5bI8l3lSmX3_N-t8W3Y,1359
|
111
111
|
edsl/interviews/statistics.py,sha256=lZCtq79QrDKG3jXao_OWuBRhnly9VyuhM6IdTJaYqPg,2461
|
112
112
|
edsl/invigilators/__init__.py,sha256=fKbZ7p9-kMelpvET3Ku2Owu-tL_apC-8gi9JychpMBY,1843
|
113
113
|
edsl/invigilators/exceptions.py,sha256=ejoF-Gt-YcnW1yHyfpJ3jZm8AC_zD0GCYafRO2LlAMQ,2767
|
114
114
|
edsl/invigilators/invigilator_base.py,sha256=DgrXTK4AAxXr4wg2pzc0p1aGPPf1UUt01C-JW1UBTvo,20099
|
115
|
-
edsl/invigilators/invigilators.py,sha256=
|
115
|
+
edsl/invigilators/invigilators.py,sha256=dc_H4WptOKzAaHiKBeW-FFBOB1ULVO-xamtjner_xGY,22005
|
116
116
|
edsl/invigilators/prompt_constructor.py,sha256=THHGcZPI-QUOH8Z9cQEzH7bZEoo0V_Nc_Phlhc9AzL0,19115
|
117
117
|
edsl/invigilators/prompt_helpers.py,sha256=LuMZFZkInPY8M7Rw9fG9rpJIcT89tr2_Iq10ZHH_Y4A,5409
|
118
118
|
edsl/invigilators/question_instructions_prompt_builder.py,sha256=E5zpwctpt_5JjONkZRcMwB0MACAzDvvnzUhmuWTnjd0,9684
|
@@ -125,7 +125,7 @@ edsl/jobs/data_structures.py,sha256=MYJwpFpJvQjw36uRoNIXHckSMXyqyuB4PbOV3tA2b4c,
|
|
125
125
|
edsl/jobs/decorators.py,sha256=vpeSgI3EP4RFz5V_OclFdnhiSrswihavAN8C9ygRhGE,1135
|
126
126
|
edsl/jobs/exceptions.py,sha256=5lktTya2VgiBR5Bd977tG2xHdrMjDqhPhQO17O6jIdc,7220
|
127
127
|
edsl/jobs/fetch_invigilator.py,sha256=y9Qf3e5sdEwdljs6sZzO1YYSy3ATI4Vd01ZUO4oJEvY,1712
|
128
|
-
edsl/jobs/html_table_job_logger.py,sha256=
|
128
|
+
edsl/jobs/html_table_job_logger.py,sha256=N4dx0NBs_wzLf30ecHqF0jT1B5BCDzlfixAEq7E0PAA,20165
|
129
129
|
edsl/jobs/jobs.py,sha256=HI8akFqRbDVEeT8DuIy2i_tyEx6Gnv3oOU7SS0TrmcM,38931
|
130
130
|
edsl/jobs/jobs_checks.py,sha256=bfPJ3hQ4qvRBhyte4g-4J8zExJxJr3nlLHmtVmFPJcQ,5390
|
131
131
|
edsl/jobs/jobs_component_constructor.py,sha256=XxnJCQEJVC99QHNXjhR3lCfzSn46Z0JMtkgHRiBUfj8,6907
|
@@ -134,8 +134,8 @@ edsl/jobs/jobs_pricing_estimation.py,sha256=znHvWlWM8Gc_im1V5TebITpLYEWpJFc1IztJ
|
|
134
134
|
edsl/jobs/jobs_remote_inference_logger.py,sha256=1lOlzsBXg69zwVP40Je-WiI4wcvS-Ov7BBuW6V4Mkes,9185
|
135
135
|
edsl/jobs/jobs_runner_asyncio.py,sha256=wSs_Ts__-2BbPqZ_xQG7BM1mQ1YqZFliPUoq9MFuSUY,11034
|
136
136
|
edsl/jobs/jobs_runner_status.py,sha256=hIHHC_sWkK6clqQwnxz8YXAvwrEoL-VVtwWnHij3vfw,10446
|
137
|
-
edsl/jobs/jobs_status_enums.py,sha256=
|
138
|
-
edsl/jobs/remote_inference.py,sha256=
|
137
|
+
edsl/jobs/jobs_status_enums.py,sha256=8Kgtr-ffcGGniQ2x5gCOqwURb_HaBWmYcWbUB_KTCY0,214
|
138
|
+
edsl/jobs/remote_inference.py,sha256=pUwxo0isuzk0qHXm8jAkRjvqdnD5LvJemkfWGcGloCM,13185
|
139
139
|
edsl/jobs/results_exceptions_handler.py,sha256=VCtnd60xwdFznzGhtXPbxLmyVf3kIjR2419LUJdFjEQ,3053
|
140
140
|
edsl/key_management/__init__.py,sha256=JiOJ71Ly9aw-tVYbWZu-qRjsW4QETYMQ9IJjsKgW1DQ,1274
|
141
141
|
edsl/key_management/exceptions.py,sha256=dDtoDh1UL52BUBrAlCIc_McgtZCAQkUx6onoSz26qeM,2158
|
@@ -146,7 +146,7 @@ edsl/key_management/models.py,sha256=z9TimNMnz47mnITM5SlJy2m2sk1aKKtt0ybV89rsaiY
|
|
146
146
|
edsl/language_models/__init__.py,sha256=WtefJs6XOCn5RSz22PgoAi3eTEr1NzGtnnBpDIie2mg,240
|
147
147
|
edsl/language_models/compute_cost.py,sha256=noWk0osCANksfKSh0sXFkPrcQegtSV8-jCRBjz_52uQ,2570
|
148
148
|
edsl/language_models/exceptions.py,sha256=P9dMA8XfK_qcuXNJZ-Xsb_Ny-12Ldu3fPC133RB40Ek,13728
|
149
|
-
edsl/language_models/language_model.py,sha256=
|
149
|
+
edsl/language_models/language_model.py,sha256=iIe0YxTulrDNwuvn8px6DaLXpcw75oRSLGf0mwmyW4M,39643
|
150
150
|
edsl/language_models/model.py,sha256=UhBFV7eSgUBub0hR7vpmnerXvLXTX-4Xda2tA_eNJbU,11616
|
151
151
|
edsl/language_models/model_list.py,sha256=Eb62xQdrlayqWYyJVgYxheMiNi14e1U9b_12qYzy1ws,4522
|
152
152
|
edsl/language_models/price_manager.py,sha256=vLqMmrFecdW6aH4csFoM8w_MtRmMGCmi8pb79oS5_EY,5747
|
@@ -266,7 +266,7 @@ edsl/results/__init__.py,sha256=RKbHY0g6s_k42VcdmTOZ2yB_nltiJnnbeQAkUY5WD9o,129
|
|
266
266
|
edsl/results/exceptions.py,sha256=u-TQsazt_qj-G4eJKBnj0UtpnIiw6A2GcCLJ2wTYE_g,6536
|
267
267
|
edsl/results/report.py,sha256=oHjMY981Gn8estqvoTk5SPiuEOIM0IR_QPBrRLdk5pM,7481
|
268
268
|
edsl/results/result.py,sha256=xUQ-rq2PR9jB3JZfa9nWd34vHsjhy3tozlSTSyoUG_s,26721
|
269
|
-
edsl/results/results.py,sha256=
|
269
|
+
edsl/results/results.py,sha256=Zv5UDwgRirTZszmW_mtknscOiVyAU9BkNEdH9h1p7xc,64731
|
270
270
|
edsl/results/results_selector.py,sha256=4_XMS2Fb-3rcXEPUYaBRw52r1i66jttjttqNFe6PRc4,18050
|
271
271
|
edsl/scenarios/DocxScenario.py,sha256=ul3nkX826m_T6LFptswqtnH5czP_yxMlLWgbTmFIZI4,482
|
272
272
|
edsl/scenarios/PdfExtractor.py,sha256=6nPZ6v9x2RrU42EkqlEcW3MS-WIQpGfwg4--6WvEC8I,1972
|
@@ -322,21 +322,21 @@ edsl/tasks/__init__.py,sha256=9lbeFFRviCGMngU2ItXWERM_X5EHxvrxzsq8YsJ0cJg,1876
|
|
322
322
|
edsl/tasks/exceptions.py,sha256=vi-ns7T8UrdOQD9PBSO-8hYlXgoperykX5c2hrYaNg4,2022
|
323
323
|
edsl/tasks/question_task_creator.py,sha256=ZSht6I3k5JjQaARufj1hdJbvWltwUzx40ikvmAjL0FA,12110
|
324
324
|
edsl/tasks/task_creators.py,sha256=u-CxzB0Qv90PDkfi0bQV3EAT89co9fXIal5JOUPcKls,5616
|
325
|
-
edsl/tasks/task_history.py,sha256=
|
325
|
+
edsl/tasks/task_history.py,sha256=A51DaOMqDiI0Qw4E-ATT61kaPrv2FEUY-Ulzf8hptR4,21527
|
326
326
|
edsl/tasks/task_status_enum.py,sha256=cQSJMcswLGdknO7tvNZBZV05T_TZV-MEBY3DxyLzTo0,9032
|
327
327
|
edsl/tasks/task_status_log.py,sha256=dbeZ5LUCJzWzBbMEIRUZKP1hjANJy7enyTiEU7hwS8w,3165
|
328
|
-
edsl/templates/error_reporting/base.html,sha256=
|
328
|
+
edsl/templates/error_reporting/base.html,sha256=BsPp87_XfLJZA4V0oPF8ulmTFyPHgB3KyPEJkgSxsmQ,1299
|
329
329
|
edsl/templates/error_reporting/exceptions_by_model.html,sha256=7uAWGfhUMey-29Vh6YkN_Qx1lfhC92fsTMxJEVXWPDs,792
|
330
330
|
edsl/templates/error_reporting/exceptions_by_question_name.html,sha256=_q6hSwtO_WhjXLZNLZhRj-qbPzStqYSzT0iECKUAFlg,454
|
331
331
|
edsl/templates/error_reporting/exceptions_by_type.html,sha256=TVsNCAz_G53LSZ-YslM51TUsbwtw7wzCqPwVYO6TVEw,415
|
332
|
-
edsl/templates/error_reporting/exceptions_table.html,sha256=
|
333
|
-
edsl/templates/error_reporting/interview_details.html,sha256=
|
332
|
+
edsl/templates/error_reporting/exceptions_table.html,sha256=ZiQycFQvIL8LBlcG9pikj2dVzi_SGi1IMgD2FUcfQJY,2370
|
333
|
+
edsl/templates/error_reporting/interview_details.html,sha256=O4yYWLjTE3pESVY9ubV456HWLQCXom2CY3oLyxOARDU,6693
|
334
334
|
edsl/templates/error_reporting/interviews.html,sha256=wn0oIIyn0UPhhsQdhoES6Zr6D0omzDlwatIUzZfasbU,193
|
335
|
-
edsl/templates/error_reporting/overview.html,sha256=
|
335
|
+
edsl/templates/error_reporting/overview.html,sha256=0ig3FIhVMjiV9rbqMPaVXakWzke41xMW-RAnle8zFqI,667
|
336
336
|
edsl/templates/error_reporting/performance_plot.html,sha256=VjCW-ONEtUqyOCCt3SZGONHF9DQ1jCvqE99BlvBSgH8,62
|
337
|
-
edsl/templates/error_reporting/report.css,sha256=
|
337
|
+
edsl/templates/error_reporting/report.css,sha256=qukm5A00Clsp9dynNz_bqTtWnhqj1JbQxx7bqmvMbVE,4522
|
338
338
|
edsl/templates/error_reporting/report.html,sha256=CWygdoBM-QXNI8HtqaQMfzspMSn4lUVRTXf6NA9ggqo,4523
|
339
|
-
edsl/templates/error_reporting/report.js,sha256=
|
339
|
+
edsl/templates/error_reporting/report.js,sha256=udGv2w5lPXKZuJzvr0SNBjs4LDgKoe2E8sKH7mXslzA,3888
|
340
340
|
edsl/tokens/__init__.py,sha256=v-osxbx8LN3pV5Ncv11RXUOw7tkXpy-aENb7i2D_p3k,986
|
341
341
|
edsl/tokens/exceptions.py,sha256=hBAZw9MxR-3vjmerCiQF6fDA21C8BterRS1pvVbSL3Y,984
|
342
342
|
edsl/tokens/interview_token_usage.py,sha256=AgPL7Yozxfy8cJOk8KaTxxCsoH94306_2HckuEOXWZg,1947
|
@@ -358,8 +358,8 @@ edsl/utilities/repair_functions.py,sha256=EXkXsqnmgPqj9b3dff1cZnJyaZw-qEvGENXCRH
|
|
358
358
|
edsl/utilities/restricted_python.py,sha256=248N2p5EWHDSpcK1G-q7DUoJeWy4sB6aO-RV0-5O7uY,2038
|
359
359
|
edsl/utilities/template_loader.py,sha256=SCAcnTnxNQ67MNSkmfz7F-S_u2peyGn2j1oRIqi1wfg,870
|
360
360
|
edsl/utilities/utilities.py,sha256=irHheAGOnl_6RwI--Hi9StVzvsHcWCqB48PWsWJQYOw,12045
|
361
|
-
edsl-0.1.
|
362
|
-
edsl-0.1.
|
363
|
-
edsl-0.1.
|
364
|
-
edsl-0.1.
|
365
|
-
edsl-0.1.
|
361
|
+
edsl-0.1.52.dist-info/LICENSE,sha256=_qszBDs8KHShVYcYzdMz3HNMtH-fKN_p5zjoVAVumFc,1111
|
362
|
+
edsl-0.1.52.dist-info/METADATA,sha256=18LEADuuU0qmUcarS9CorkQL7Fh59xC1D842ahXazFk,12670
|
363
|
+
edsl-0.1.52.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
364
|
+
edsl-0.1.52.dist-info/entry_points.txt,sha256=JnG7xqMtHaQu9BU-yPATxdyCeA48XJpuclnWCqMfIMU,38
|
365
|
+
edsl-0.1.52.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|