edsl 0.1.29.dev6__py3-none-any.whl → 0.1.30.dev1__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/Base.py +6 -3
- edsl/__init__.py +23 -23
- edsl/__version__.py +1 -1
- edsl/agents/Agent.py +35 -34
- edsl/agents/AgentList.py +16 -5
- edsl/agents/Invigilator.py +19 -1
- edsl/agents/descriptors.py +2 -1
- edsl/base/Base.py +289 -0
- edsl/config.py +2 -1
- edsl/coop/utils.py +28 -1
- edsl/data/Cache.py +19 -5
- edsl/data/SQLiteDict.py +11 -3
- edsl/jobs/Answers.py +15 -1
- edsl/jobs/Jobs.py +69 -31
- edsl/jobs/buckets/ModelBuckets.py +4 -2
- edsl/jobs/buckets/TokenBucket.py +1 -2
- edsl/jobs/interviews/Interview.py +0 -6
- edsl/jobs/interviews/InterviewTaskBuildingMixin.py +9 -5
- edsl/jobs/runners/JobsRunnerAsyncio.py +12 -16
- edsl/jobs/tasks/TaskHistory.py +4 -3
- edsl/language_models/LanguageModel.py +5 -11
- edsl/language_models/ModelList.py +1 -1
- edsl/language_models/repair.py +8 -7
- edsl/notebooks/Notebook.py +9 -3
- edsl/questions/QuestionBase.py +6 -2
- edsl/questions/QuestionBudget.py +5 -6
- edsl/questions/QuestionCheckBox.py +7 -3
- edsl/questions/QuestionExtract.py +5 -3
- edsl/questions/QuestionFreeText.py +3 -3
- edsl/questions/QuestionFunctional.py +0 -3
- edsl/questions/QuestionList.py +3 -4
- edsl/questions/QuestionMultipleChoice.py +12 -5
- edsl/questions/QuestionNumerical.py +4 -3
- edsl/questions/QuestionRank.py +5 -3
- edsl/questions/__init__.py +4 -3
- edsl/questions/descriptors.py +4 -2
- edsl/results/DatasetExportMixin.py +491 -0
- edsl/results/Result.py +13 -65
- edsl/results/Results.py +91 -39
- edsl/results/ResultsDBMixin.py +7 -3
- edsl/results/ResultsExportMixin.py +22 -537
- edsl/results/ResultsGGMixin.py +3 -3
- edsl/results/ResultsToolsMixin.py +1 -4
- edsl/scenarios/FileStore.py +140 -0
- edsl/scenarios/Scenario.py +5 -6
- edsl/scenarios/ScenarioList.py +17 -8
- edsl/scenarios/ScenarioListExportMixin.py +32 -0
- edsl/scenarios/ScenarioListPdfMixin.py +2 -1
- edsl/scenarios/__init__.py +1 -0
- edsl/surveys/MemoryPlan.py +11 -4
- edsl/surveys/Survey.py +9 -4
- edsl/surveys/SurveyExportMixin.py +4 -2
- edsl/surveys/SurveyFlowVisualizationMixin.py +6 -4
- edsl/utilities/__init__.py +21 -21
- edsl/utilities/interface.py +66 -45
- edsl/utilities/utilities.py +11 -13
- {edsl-0.1.29.dev6.dist-info → edsl-0.1.30.dev1.dist-info}/METADATA +1 -1
- {edsl-0.1.29.dev6.dist-info → edsl-0.1.30.dev1.dist-info}/RECORD +60 -56
- {edsl-0.1.29.dev6.dist-info → edsl-0.1.30.dev1.dist-info}/LICENSE +0 -0
- {edsl-0.1.29.dev6.dist-info → edsl-0.1.30.dev1.dist-info}/WHEEL +0 -0
edsl/utilities/interface.py
CHANGED
@@ -1,12 +1,45 @@
|
|
1
1
|
"""A module for displaying data in various formats."""
|
2
2
|
|
3
3
|
from html import escape
|
4
|
-
from IPython.display import HTML
|
5
|
-
from IPython.display import display as ipython_diplay
|
6
4
|
|
7
|
-
|
8
|
-
|
9
|
-
from
|
5
|
+
|
6
|
+
def create_image(console, image_filename):
|
7
|
+
"""Create an image from the console output."""
|
8
|
+
font_size = 15
|
9
|
+
from PIL import Image, ImageDraw, ImageFont
|
10
|
+
|
11
|
+
text = console.export_text() # Get the console output as text.
|
12
|
+
|
13
|
+
# Create an image from the text
|
14
|
+
font_size = 15
|
15
|
+
font = ImageFont.load_default() # Use the default font to avoid file path issues.
|
16
|
+
# text_width, text_height = ImageDraw.Draw(
|
17
|
+
# Image.new("RGB", (100, 100))
|
18
|
+
# ).multiline_textsize(text, font=font)
|
19
|
+
text_width, text_height = get_multiline_textsize(text, font)
|
20
|
+
image = Image.new(
|
21
|
+
"RGB", (text_width + 20, text_height + 20), color=(255, 255, 255)
|
22
|
+
) # Add some padding
|
23
|
+
d = ImageDraw.Draw(image)
|
24
|
+
|
25
|
+
# Draw text to image
|
26
|
+
d.multiline_text((10, 10), text, font=font, fill=(0, 0, 0))
|
27
|
+
# Save the image
|
28
|
+
image.save(image_filename)
|
29
|
+
|
30
|
+
|
31
|
+
def display_table(console, table, filename):
|
32
|
+
# from rich.console import Console
|
33
|
+
# from rich.table import Table
|
34
|
+
"""Display the table using the rich library and save it to a file if a filename is provided."""
|
35
|
+
if filename is not None:
|
36
|
+
with open(filename, "w") as f:
|
37
|
+
with console.capture() as capture:
|
38
|
+
console.print(table)
|
39
|
+
f.write(capture.get())
|
40
|
+
create_image(console, filename + ".png")
|
41
|
+
else:
|
42
|
+
console.print(table)
|
10
43
|
|
11
44
|
|
12
45
|
def gen_html_sandwich(html_inner, interactive=False):
|
@@ -133,43 +166,10 @@ def get_multiline_textsize(text, font):
|
|
133
166
|
return max_width, total_height
|
134
167
|
|
135
168
|
|
136
|
-
# def create_image(console, image_filename):
|
137
|
-
# """Create an image from the console output."""
|
138
|
-
# font_size = 15
|
139
|
-
|
140
|
-
# text = console.export_text() # Get the console output as text.
|
141
|
-
|
142
|
-
# # Create an image from the text
|
143
|
-
# font_size = 15
|
144
|
-
# font = ImageFont.load_default() # Use the default font to avoid file path issues.
|
145
|
-
# # text_width, text_height = ImageDraw.Draw(
|
146
|
-
# # Image.new("RGB", (100, 100))
|
147
|
-
# # ).multiline_textsize(text, font=font)
|
148
|
-
# text_width, text_height = get_multiline_textsize(text, font)
|
149
|
-
# image = Image.new(
|
150
|
-
# "RGB", (text_width + 20, text_height + 20), color=(255, 255, 255)
|
151
|
-
# ) # Add some padding
|
152
|
-
# d = ImageDraw.Draw(image)
|
153
|
-
|
154
|
-
# # Draw text to image
|
155
|
-
# d.multiline_text((10, 10), text, font=font, fill=(0, 0, 0))
|
156
|
-
# # Save the image
|
157
|
-
# image.save(image_filename)
|
158
|
-
|
159
|
-
|
160
|
-
def display(console, table, filename):
|
161
|
-
"""Display the table using the rich library and save it to a file if a filename is provided."""
|
162
|
-
if filename is not None:
|
163
|
-
with open(filename, "w") as f:
|
164
|
-
with console.capture() as capture:
|
165
|
-
console.print(table)
|
166
|
-
f.write(capture.get())
|
167
|
-
create_image(console, filename + ".png")
|
168
|
-
else:
|
169
|
-
console.print(table)
|
170
|
-
|
171
|
-
|
172
169
|
def print_results_long(results, max_rows=None):
|
170
|
+
from rich.console import Console
|
171
|
+
from rich.table import Table
|
172
|
+
|
173
173
|
console = Console(record=True)
|
174
174
|
table = Table(show_header=True, header_style="bold magenta")
|
175
175
|
table.add_column("Result index", style="dim")
|
@@ -199,6 +199,9 @@ def print_dict_with_rich(d, key_name="Key", value_name="Value", filename=None):
|
|
199
199
|
│ c │ 3 │
|
200
200
|
└─────┴───────┘
|
201
201
|
"""
|
202
|
+
from rich.console import Console
|
203
|
+
from rich.table import Table
|
204
|
+
|
202
205
|
console = Console(record=True)
|
203
206
|
table = Table(show_header=True, header_style="bold magenta")
|
204
207
|
table.add_column(key_name, style="dim")
|
@@ -206,7 +209,7 @@ def print_dict_with_rich(d, key_name="Key", value_name="Value", filename=None):
|
|
206
209
|
for key, value in d.items():
|
207
210
|
table.add_row(key, str(value))
|
208
211
|
console.print(table)
|
209
|
-
#
|
212
|
+
# display_table(console, table, filename)
|
210
213
|
|
211
214
|
|
212
215
|
def print_dict_as_html_table(
|
@@ -251,6 +254,9 @@ def print_dict_as_html_table(
|
|
251
254
|
|
252
255
|
|
253
256
|
def print_scenario_list(data):
|
257
|
+
from rich.console import Console
|
258
|
+
from rich.table import Table
|
259
|
+
|
254
260
|
new_data = []
|
255
261
|
for obs in data:
|
256
262
|
try:
|
@@ -300,6 +306,9 @@ def print_dataset_with_rich(data, filename=None, split_at_dot=True):
|
|
300
306
|
│ 3 │ 6 │
|
301
307
|
└───┴───┘
|
302
308
|
"""
|
309
|
+
from rich.console import Console
|
310
|
+
from rich.table import Table
|
311
|
+
|
303
312
|
console = Console(record=True)
|
304
313
|
|
305
314
|
# Create a table object
|
@@ -321,7 +330,7 @@ def print_dataset_with_rich(data, filename=None, split_at_dot=True):
|
|
321
330
|
table.add_row(*row)
|
322
331
|
|
323
332
|
console.print(table)
|
324
|
-
#
|
333
|
+
# display_table(console, table, filename)
|
325
334
|
|
326
335
|
|
327
336
|
def create_latex_table_from_data(data, filename=None, split_at_dot=True):
|
@@ -495,6 +504,9 @@ def print_list_of_dicts_as_markdown_table(data, filename=None):
|
|
495
504
|
|
496
505
|
def print_public_methods_with_doc(obj):
|
497
506
|
"""Print the public methods of an object along with their docstrings."""
|
507
|
+
from rich.console import Console
|
508
|
+
from rich.table import Table
|
509
|
+
|
498
510
|
console = Console()
|
499
511
|
public_methods_with_docstrings = [
|
500
512
|
(method, getattr(obj, method).__doc__)
|
@@ -525,6 +537,10 @@ def print_tally_with_rich(data, filename=None):
|
|
525
537
|
└───────┴───────┘
|
526
538
|
"""
|
527
539
|
# Initialize a console object
|
540
|
+
from rich.console import Console
|
541
|
+
from rich.table import Table
|
542
|
+
from IPython.display import display
|
543
|
+
|
528
544
|
console = Console(record=True)
|
529
545
|
|
530
546
|
# Create a new table
|
@@ -538,7 +554,9 @@ def print_tally_with_rich(data, filename=None):
|
|
538
554
|
for key, value in data.items():
|
539
555
|
table.add_row(key, str(value))
|
540
556
|
|
541
|
-
display
|
557
|
+
from IPython.display import display
|
558
|
+
|
559
|
+
display_table(console, table, filename)
|
542
560
|
|
543
561
|
|
544
562
|
def print_table_with_rich(data, filename=None):
|
@@ -561,6 +579,9 @@ def print_table_with_rich(data, filename=None):
|
|
561
579
|
│ 2 │ 9 │ 8 │
|
562
580
|
└───┴───┴───┘
|
563
581
|
"""
|
582
|
+
from rich.console import Console
|
583
|
+
from rich.table import Table
|
584
|
+
|
564
585
|
# Initialize a console object - expects a list of dictionaries
|
565
586
|
console = Console(record=True)
|
566
587
|
|
@@ -580,7 +601,7 @@ def print_table_with_rich(data, filename=None):
|
|
580
601
|
for row in data:
|
581
602
|
table.add_row(*[str(value) for value in row.values()])
|
582
603
|
|
583
|
-
|
604
|
+
display_table(console, table, filename)
|
584
605
|
|
585
606
|
|
586
607
|
if __name__ == "__main__":
|
edsl/utilities/utilities.py
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
"""Utility functions for working with strings, dictionaries, and files."""
|
2
2
|
|
3
|
+
from functools import wraps
|
4
|
+
import types
|
5
|
+
import time
|
6
|
+
|
3
7
|
import hashlib
|
4
8
|
import json
|
5
9
|
import keyword
|
@@ -11,18 +15,10 @@ import tempfile
|
|
11
15
|
import gzip
|
12
16
|
import webbrowser
|
13
17
|
import json
|
18
|
+
|
14
19
|
from html import escape
|
15
20
|
from typing import Callable, Union
|
16
21
|
|
17
|
-
from pygments import highlight
|
18
|
-
from pygments.lexers import JsonLexer
|
19
|
-
from pygments.formatters import HtmlFormatter
|
20
|
-
from IPython.display import HTML
|
21
|
-
|
22
|
-
from functools import wraps
|
23
|
-
import types
|
24
|
-
import time
|
25
|
-
|
26
22
|
|
27
23
|
def time_it(func):
|
28
24
|
@wraps(func)
|
@@ -52,10 +48,6 @@ def dict_hash(data: dict):
|
|
52
48
|
)
|
53
49
|
|
54
50
|
|
55
|
-
import re
|
56
|
-
import json
|
57
|
-
|
58
|
-
|
59
51
|
def extract_json_from_string(text):
|
60
52
|
pattern = re.compile(r"\{.*?\}")
|
61
53
|
match = pattern.search(text)
|
@@ -96,6 +88,11 @@ def data_to_html(data, replace_new_lines=False):
|
|
96
88
|
if "edsl_class_name" in data:
|
97
89
|
_ = data.pop("edsl_class_name")
|
98
90
|
|
91
|
+
from pygments import highlight
|
92
|
+
from pygments.lexers import JsonLexer
|
93
|
+
from pygments.formatters import HtmlFormatter
|
94
|
+
from IPython.display import HTML
|
95
|
+
|
99
96
|
json_str = json.dumps(data, indent=4)
|
100
97
|
formatted_json = highlight(
|
101
98
|
json_str,
|
@@ -104,6 +101,7 @@ def data_to_html(data, replace_new_lines=False):
|
|
104
101
|
)
|
105
102
|
if replace_new_lines:
|
106
103
|
formatted_json = formatted_json.replace("\\n", "<br>")
|
104
|
+
|
107
105
|
return HTML(formatted_json).data
|
108
106
|
|
109
107
|
|
@@ -1,15 +1,16 @@
|
|
1
|
-
edsl/Base.py,sha256=
|
1
|
+
edsl/Base.py,sha256=ttNxUotSd9LSEJl2w6LdMtT78d0nMQvYDJ0q4JkqBfg,8945
|
2
2
|
edsl/BaseDiff.py,sha256=RoVEh52UJs22yMa7k7jv8se01G62jJNWnBzaZngo-Ug,8260
|
3
|
-
edsl/__init__.py,sha256=
|
4
|
-
edsl/__version__.py,sha256=
|
5
|
-
edsl/agents/Agent.py,sha256=
|
6
|
-
edsl/agents/AgentList.py,sha256=
|
7
|
-
edsl/agents/Invigilator.py,sha256=
|
3
|
+
edsl/__init__.py,sha256=E6PkWI_owu8AUc4uJs2XWDVozqSbcRWzsIqf8_Kskho,1631
|
4
|
+
edsl/__version__.py,sha256=amcrd2RosTWD41gMCGQ_UQUwccGuD5VryTFhTXadSlE,28
|
5
|
+
edsl/agents/Agent.py,sha256=nSAwyfro0aj2qezDb-CfTIoSQb35ZC6xQTx2A5pph3s,27085
|
6
|
+
edsl/agents/AgentList.py,sha256=07RpCsqAJxyAEMY4NvvqWOXSk11i6b80UZhOwa1-y9A,9468
|
7
|
+
edsl/agents/Invigilator.py,sha256=gfy6yyaWKPa-OfMgZ3VvWAqBwppSdJSjSatH1Gmd_A0,10784
|
8
8
|
edsl/agents/InvigilatorBase.py,sha256=ncha1HF2V1Dz4f50Gekg6AzUXCD2Af82ztfSJZbgOHY,7469
|
9
9
|
edsl/agents/PromptConstructionMixin.py,sha256=MP2Frmm9iP3J50ijXKrr6YYIjB_38UuA2J7Mysfs0ZQ,15913
|
10
10
|
edsl/agents/__init__.py,sha256=a3H1lxDwu9HR8fwh79C5DgxPSFv_bE2rzQ6y1D8Ba5c,80
|
11
|
-
edsl/agents/descriptors.py,sha256=
|
12
|
-
edsl/
|
11
|
+
edsl/agents/descriptors.py,sha256=m8ND3-2-JbgNX1HGakBNLIeemwsgYa1mQxYO9GW33hw,2934
|
12
|
+
edsl/base/Base.py,sha256=DShsfI6A2ojg42muPFpVtUgTX33pnqT5vtN0SRlr-9Q,8866
|
13
|
+
edsl/config.py,sha256=--CQg-zL3-Jm8g5OUWsdWHxI-tEs_EDKCKFREcegYOI,5618
|
13
14
|
edsl/conjure/AgentConstructionMixin.py,sha256=qLLYJH02HotVwBUYzaHs4QW0t5nsC3NX15qxQLzEwLI,5702
|
14
15
|
edsl/conjure/Conjure.py,sha256=KBmF3d6EjzTI5f-j_cZBowxWQx7jZqezHgfPMkh-h8M,1884
|
15
16
|
edsl/conjure/InputData.py,sha256=RdFgkzzayddSTd6vcwBB8LC796YBj94pciwrQx9nBtg,22003
|
@@ -32,11 +33,11 @@ edsl/conversation/mug_negotiation.py,sha256=mjvAqErD4AjN3G2za2c-X-3axOShW-zAJUei
|
|
32
33
|
edsl/conversation/next_speaker_utilities.py,sha256=bqr5JglCd6bdLc9IZ5zGOAsmN2F4ERiubSMYvZIG7qk,3629
|
33
34
|
edsl/coop/__init__.py,sha256=4iZCwJSzJVyjBYk8ggGxY2kZjq9dXVT1jhyPDNyew4I,115
|
34
35
|
edsl/coop/coop.py,sha256=Kv6oUOZ9uuxxR59Rn6IG-tB3JaN2z8AnHVW8G-RSLQE,26928
|
35
|
-
edsl/coop/utils.py,sha256=
|
36
|
-
edsl/data/Cache.py,sha256=
|
36
|
+
edsl/coop/utils.py,sha256=BeBcMWWl9Kxjll_WfDQNHbp-6ct9QjVn4ph2V4ph6XE,3347
|
37
|
+
edsl/data/Cache.py,sha256=zu0wQ-853tQKgYem5MmnwG4jFbDyWnRukJ_p2Ujb4ug,15217
|
37
38
|
edsl/data/CacheEntry.py,sha256=AnZBUautQc19KhE6NkI87U_P9wDZI2eu-8B1XopPTOI,7235
|
38
39
|
edsl/data/CacheHandler.py,sha256=DTr8nJnbl_SidhsDetqbshu1DV-njPFiPPosUWTIBok,4789
|
39
|
-
edsl/data/SQLiteDict.py,sha256=
|
40
|
+
edsl/data/SQLiteDict.py,sha256=V5Nfnxctgh4Iblqcw1KmbnkjtfmWrrombROSQ3mvg6A,8979
|
40
41
|
edsl/data/__init__.py,sha256=KBNGGEuGHq--D-TlpAQmvv_If906dJc1Gsy028zOx78,170
|
41
42
|
edsl/data/orm.py,sha256=Jz6rvw5SrlxwysTL0QI9r68EflKxeEBmf6j6himHDS8,238
|
42
43
|
edsl/data_transfer_models.py,sha256=17A3vpxTkJ2DnV8ggTPxwPzwlQAEYn94U4qiBv8hV3o,1026
|
@@ -64,42 +65,42 @@ edsl/inference_services/models_available_cache.py,sha256=ZT2pBGxJqTgwynthu-SqBjv
|
|
64
65
|
edsl/inference_services/rate_limits_cache.py,sha256=HYslviz7mxF9U4CUTPAkoyBsiXjSju-YCp4HHir6e34,1398
|
65
66
|
edsl/inference_services/registry.py,sha256=-Yz86do-KZraunIrziVs9b95EbY-__JUnQb5Ulni7KI,483
|
66
67
|
edsl/inference_services/write_available.py,sha256=NNwhATlaMp8IYY635MSx-oYxt5X15acjAfaqYCo_I1Y,285
|
67
|
-
edsl/jobs/Answers.py,sha256=
|
68
|
-
edsl/jobs/Jobs.py,sha256=
|
68
|
+
edsl/jobs/Answers.py,sha256=z4TADN-iHIrbMtI1jVyiaetv0OkTv768dFBpREIQC6c,1799
|
69
|
+
edsl/jobs/Jobs.py,sha256=IH7DeLEZFBPq32Y8xrKH9hXCDd4t2MsbGFNSf9GaA0o,28825
|
69
70
|
edsl/jobs/__init__.py,sha256=aKuAyd_GoalGj-k7djOoVwEbFUE2XLPlikXaA1_8yAg,32
|
70
71
|
edsl/jobs/buckets/BucketCollection.py,sha256=LA8DBVwMdeTFCbSDI0S2cDzfi_Qo6kRizwrG64tE8S4,1844
|
71
|
-
edsl/jobs/buckets/ModelBuckets.py,sha256=
|
72
|
-
edsl/jobs/buckets/TokenBucket.py,sha256=
|
73
|
-
edsl/jobs/interviews/Interview.py,sha256=
|
72
|
+
edsl/jobs/buckets/ModelBuckets.py,sha256=Rlh1gkXzusyb9GAXYJ9spNCmDMr4Cz1lPLSRP8-f2dY,2038
|
73
|
+
edsl/jobs/buckets/TokenBucket.py,sha256=CUQDgzwNNJJxWr221Lwmp0KdUd10FFQgBVnMcnyuxCY,5188
|
74
|
+
edsl/jobs/interviews/Interview.py,sha256=N0FCtU3McpBFazuKleHjQVfcG7Oq2ZdMW8G8BzTt-Jo,9708
|
74
75
|
edsl/jobs/interviews/InterviewStatistic.py,sha256=hY5d2EkIJ96NilPpZAvZZzZoxLXM7ss3xx5MIcKtTPs,1856
|
75
76
|
edsl/jobs/interviews/InterviewStatisticsCollection.py,sha256=_ZZ0fnZBQiIywP9Q_wWjpWhlfcPe2cn32GKut10t5RI,788
|
76
77
|
edsl/jobs/interviews/InterviewStatusDictionary.py,sha256=MSyys4hOWe1d8gfsUvAPbcKrs8YiPnz8jpufBSJL7SU,2485
|
77
78
|
edsl/jobs/interviews/InterviewStatusLog.py,sha256=6u0F8gf5tha39VQL-IK_QPkCsQAYVOx_IesX7TDDX_A,3252
|
78
79
|
edsl/jobs/interviews/InterviewStatusMixin.py,sha256=VV0Pel-crUsLoGpTifeIIkXsLGj0bfuO--UtpRnH-dU,1251
|
79
|
-
edsl/jobs/interviews/InterviewTaskBuildingMixin.py,sha256=
|
80
|
+
edsl/jobs/interviews/InterviewTaskBuildingMixin.py,sha256=6F-sOyccoi5RRzE_NBMBIv0oHROeMYMSle7jJMUtSD8,11658
|
80
81
|
edsl/jobs/interviews/ReportErrors.py,sha256=RSzDU2rWwtjfztj7sqaMab0quCiY-X2bG3AEOxhTim8,1745
|
81
82
|
edsl/jobs/interviews/interview_exception_tracking.py,sha256=tIcX92udnkE5fcM5_WXjRF9xgTq2P0uaDXxZf3NQGG0,3271
|
82
83
|
edsl/jobs/interviews/interview_status_enum.py,sha256=KJ-1yLAHdX-p8TiFnM0M3v1tnBwkq4aMCuBX6-ytrI8,229
|
83
84
|
edsl/jobs/interviews/retry_management.py,sha256=9Efn4B3aV45vbocnF6J5WQt88i2FgFjoi5ALzGUukEE,1375
|
84
|
-
edsl/jobs/runners/JobsRunnerAsyncio.py,sha256=
|
85
|
+
edsl/jobs/runners/JobsRunnerAsyncio.py,sha256=vBUl4uyHHjWrOqK3maXwv-W-bt2rhgUBhowT-1QoQVQ,11834
|
85
86
|
edsl/jobs/runners/JobsRunnerStatusData.py,sha256=-mxcmX0a38GGO9DQ-ItTmj6mvCUk5uC-UudT77lXTG4,10327
|
86
87
|
edsl/jobs/runners/JobsRunnerStatusMixin.py,sha256=yxnXuOovwHgfDokNuluH_qulBcM0gCcbpCQibqVKXFI,3137
|
87
88
|
edsl/jobs/tasks/QuestionTaskCreator.py,sha256=SXO_ITNPAXh9oBvCh8rcbH9ln0VjOyuM_i2IrRDHnIo,10231
|
88
89
|
edsl/jobs/tasks/TaskCreators.py,sha256=DbCt5BzJ0CsMSquqLyLdk8el031Wst7vCszVW5EltX8,2418
|
89
|
-
edsl/jobs/tasks/TaskHistory.py,sha256=
|
90
|
+
edsl/jobs/tasks/TaskHistory.py,sha256=ZVellGW1cvwqdHt98dYPl0FYhk3VqRGHAZETDOxEkqg,10939
|
90
91
|
edsl/jobs/tasks/TaskStatusLog.py,sha256=bqH36a32F12fjX-M-4lNOhHaK2-WLFzKE-r0PxZPRjI,546
|
91
92
|
edsl/jobs/tasks/task_management.py,sha256=KMToZuXzMlnHRHUF_VHL0-lHMTGhklf2GHVuwEEHtzA,301
|
92
93
|
edsl/jobs/tasks/task_status_enum.py,sha256=DOyrz61YlIS8R1W7izJNphcLrJ7I_ReUlfdRmk23h0Q,5333
|
93
94
|
edsl/jobs/tokens/InterviewTokenUsage.py,sha256=u_6-IHpGFwZ6qMEXr24-jyLVUSSp4dSs_4iAZsBv7O4,1100
|
94
95
|
edsl/jobs/tokens/TokenUsage.py,sha256=odj2-wDNEbHl9noyFAQ0DSKV0D9cv3aDOpmXufKZ8O4,1323
|
95
|
-
edsl/language_models/LanguageModel.py,sha256=
|
96
|
-
edsl/language_models/ModelList.py,sha256=
|
96
|
+
edsl/language_models/LanguageModel.py,sha256=ighiMbpkppcDMlW0s-5PYsPOUTFIpbDfdO6Cr87JUjo,18886
|
97
|
+
edsl/language_models/ModelList.py,sha256=DLeAq7o8uniZkP_-z8vJDMwf4JXksqLoPqOeeLI3QBE,2687
|
97
98
|
edsl/language_models/RegisterLanguageModelsMeta.py,sha256=2bvWrVau2BRo-Bb1aO-QATH8xxuW_tF7NmqBMGDOfSg,8191
|
98
99
|
edsl/language_models/__init__.py,sha256=bvY7Gy6VkX1gSbNkRbGPS-M1kUnb0EohL0FSagaEaTs,109
|
99
100
|
edsl/language_models/registry.py,sha256=J7blAbRFHxr2nWSoe61G4p-6kOgzUlKclJ55xVldKWc,3191
|
100
|
-
edsl/language_models/repair.py,sha256=
|
101
|
+
edsl/language_models/repair.py,sha256=xaNunBRpMWgceSPOzk-ugp5WXtgLuuhj23TgXUeOobw,5963
|
101
102
|
edsl/language_models/unused/ReplicateBase.py,sha256=J1oqf7mEyyKhRwNUomnptVqAsVFYCbS3iTW0EXpKtXo,3331
|
102
|
-
edsl/notebooks/Notebook.py,sha256
|
103
|
+
edsl/notebooks/Notebook.py,sha256=tv5D-ZTNcYcheG3UJu5MAiM0urHw2Au1CjdTN5t5FBU,7114
|
103
104
|
edsl/notebooks/__init__.py,sha256=VNUA3nNq04slWNbYaNrzOhQJu3AZANpvBniyCJSzJ7U,45
|
104
105
|
edsl/prompts/Prompt.py,sha256=12cbeQTKqfVQGpd1urqKZeXiDtKz2RAJqftoXS3q-DE,10070
|
105
106
|
edsl/prompts/QuestionInstructionsBase.py,sha256=xico6ob4cqWsHl-txj2RbY_4Ny5u9UqvIjmoTVgjUhk,348
|
@@ -118,43 +119,46 @@ edsl/prompts/library/question_rank.py,sha256=WDgXyph0EKWJrSgsW2eqcx3xdU-WA1LEvB2
|
|
118
119
|
edsl/prompts/prompt_config.py,sha256=O3Y5EvBsCeKs9m9IjXiRXOcHWlWvQV0yqsNb2oSR1ow,974
|
119
120
|
edsl/prompts/registry.py,sha256=XOsqGsvNOmIG83jqoszqI72yNZkkszKR4FrEhwSzj_Q,8093
|
120
121
|
edsl/questions/AnswerValidatorMixin.py,sha256=U5i79HoEHpSoevgtx68TSg8a9tELq3R8xMtYyK1L7DQ,12106
|
121
|
-
edsl/questions/QuestionBase.py,sha256=
|
122
|
-
edsl/questions/QuestionBudget.py,sha256=
|
123
|
-
edsl/questions/QuestionCheckBox.py,sha256=
|
124
|
-
edsl/questions/QuestionExtract.py,sha256=
|
125
|
-
edsl/questions/QuestionFreeText.py,sha256=
|
126
|
-
edsl/questions/QuestionFunctional.py,sha256=
|
127
|
-
edsl/questions/QuestionList.py,sha256=
|
128
|
-
edsl/questions/QuestionMultipleChoice.py,sha256=
|
129
|
-
edsl/questions/QuestionNumerical.py,sha256=
|
130
|
-
edsl/questions/QuestionRank.py,sha256=
|
122
|
+
edsl/questions/QuestionBase.py,sha256=L0-IMnSGiUh5Uw7kFDsPV057mR9tL9aMwHUtxjLlKsg,19017
|
123
|
+
edsl/questions/QuestionBudget.py,sha256=K8cc1YOfoLWRoZBAkWO7WsMDZne0a5oAJMSxv2Jzd1E,6143
|
124
|
+
edsl/questions/QuestionCheckBox.py,sha256=YHS-LEvR_1CWyg4usOlWfj9Gb_cCQlfIWIWhYRWn7Wo,6129
|
125
|
+
edsl/questions/QuestionExtract.py,sha256=fjnsNLS2fNW6dfFuRyc2EgKEHx8ujjONmg2nSRynje4,3988
|
126
|
+
edsl/questions/QuestionFreeText.py,sha256=umLzZvhDcJlmPwev4z5VFV6cIO-omifPtyBR3EQc4mk,3173
|
127
|
+
edsl/questions/QuestionFunctional.py,sha256=s49mQBVGc7B4-3sX49_a_mgVZsR9bdPra2VYe4m8XoY,3961
|
128
|
+
edsl/questions/QuestionList.py,sha256=Wf7xDXJsQBsAD_yOrzZ_GstKGT7aZjimTkU6qyqOhhM,4051
|
129
|
+
edsl/questions/QuestionMultipleChoice.py,sha256=Oin_qOJz5wfZdcFopI6dyvlUn2LGocAvbNwSTmxWcQA,4491
|
130
|
+
edsl/questions/QuestionNumerical.py,sha256=QArFDhP9Adb4l6y-udnUqPNk2Q6vT4pGsY13TkHsLGs,3631
|
131
|
+
edsl/questions/QuestionRank.py,sha256=NEAwDt1at0zEM2S-E7jXMjglnlB0WhUlxSVJkzH4xSs,5876
|
131
132
|
edsl/questions/RegisterQuestionsMeta.py,sha256=unON0CKpW-mveyhg9V3_BF_GYYwytMYP9h2ZZPetVNM,1994
|
132
133
|
edsl/questions/SimpleAskMixin.py,sha256=YRLiHA6TPMKyLWvdAi7Mfnxcqtw7Kem6tH28YNb8n4U,2227
|
133
|
-
edsl/questions/__init__.py,sha256=
|
134
|
+
edsl/questions/__init__.py,sha256=U7t2dk_dHSaFRciHETXaGaJRnCobaik3mIKCpGRUuJo,1160
|
134
135
|
edsl/questions/compose_questions.py,sha256=ZcLkwNaofk-o0-skGXEDGZAj6DumOhVhyIUjqEnKrbg,3380
|
135
136
|
edsl/questions/derived/QuestionLikertFive.py,sha256=zKkjKI3HSt9ZGyBBNgXNsfXZ7gOoOknidLDPgMN_PcI,2475
|
136
137
|
edsl/questions/derived/QuestionLinearScale.py,sha256=7tybIaMaDTMkTFC6CymusW69so-zf5jUn8Aqf5pw__Y,2673
|
137
138
|
edsl/questions/derived/QuestionTopK.py,sha256=TouXKZt_h6Jd-2rAjkEOCJOzzei4Wa-3hjYq9CLxWws,2744
|
138
139
|
edsl/questions/derived/QuestionYesNo.py,sha256=KtMGuAPYWv-7-9WGa0fIS2UBxf6KKjFpuTk_h8FPZbg,2076
|
139
140
|
edsl/questions/derived/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
|
-
edsl/questions/descriptors.py,sha256=
|
141
|
+
edsl/questions/descriptors.py,sha256=kqjV3pRbyq0ch-fSg4vkTz1ZH3ckud5Pd1HzR-R7pdE,13310
|
141
142
|
edsl/questions/question_registry.py,sha256=ZD7Y_towDdlnnmLq12vVewgQ3fEk9Ur0tCTWK8-WqeQ,5241
|
142
143
|
edsl/questions/settings.py,sha256=er_z0ZW_dgmC5CHLWkaqBJiuWgAYzIund85M5YZFQAI,291
|
143
144
|
edsl/results/Dataset.py,sha256=DZgb3vIj69ON7APQ6DimjBwAS1xZvZiXOg68CjW9E3I,8662
|
144
|
-
edsl/results/
|
145
|
-
edsl/results/
|
146
|
-
edsl/results/
|
147
|
-
edsl/results/
|
145
|
+
edsl/results/DatasetExportMixin.py,sha256=QZEuSxJPisgJ5GvFkKbuqayCSgJzblclea1CFwsBZ2w,17959
|
146
|
+
edsl/results/Result.py,sha256=X1qAACs9E6XhRmlIsb3CguDs6_laKkVyxE0JJpOJDZQ,12729
|
147
|
+
edsl/results/Results.py,sha256=FuwUbcsa0rK3OWX4-nFUBq0egAeVVz7-Zgc8UAH3GkA,36326
|
148
|
+
edsl/results/ResultsDBMixin.py,sha256=Vs95zbSB4G7ENY4lU7OBdekg9evwTrtPH0IIL2NAFTk,7936
|
149
|
+
edsl/results/ResultsExportMixin.py,sha256=XizBsPNxziyffirMA4kS7UHpYM1WIE4s1K-B7TqTfDw,1266
|
148
150
|
edsl/results/ResultsFetchMixin.py,sha256=VEa0TKDcXbnTinSKs9YaE4WjOSLmlp9Po1_9kklFvSo,848
|
149
|
-
edsl/results/ResultsGGMixin.py,sha256=
|
150
|
-
edsl/results/ResultsToolsMixin.py,sha256=
|
151
|
+
edsl/results/ResultsGGMixin.py,sha256=SAYz8p4wb1g8x6KhBVz9NHOGib2c2XsqtTclpADrFeM,4344
|
152
|
+
edsl/results/ResultsToolsMixin.py,sha256=I19kAO-BKszgjxzMljE1W8ZsOnpozmO2nc43-XBbrZk,2976
|
151
153
|
edsl/results/__init__.py,sha256=2YcyiVtXi-3vIV0ZzOy1PqBLm2gaziufJVi4fdNrAt8,80
|
152
|
-
edsl/scenarios/
|
154
|
+
edsl/scenarios/FileStore.py,sha256=sQAhmi7hXzfI9y-q3hOiBbTd-BAIRw9FusMyefM4mSI,4460
|
155
|
+
edsl/scenarios/Scenario.py,sha256=KCMze1PL0uxLMrqaneEXZBDc65q7AUV71zZIEmeGSVo,14766
|
153
156
|
edsl/scenarios/ScenarioHtmlMixin.py,sha256=EmugmbPJYW5eZS30rM6pDMDQD9yrrvHjmgZWB1qBfq4,1882
|
154
157
|
edsl/scenarios/ScenarioImageMixin.py,sha256=VJ5FqyPrL5-ieORlWMpnjmOAFIau8QFZCIZyEBKgb6I,3530
|
155
|
-
edsl/scenarios/ScenarioList.py,sha256=
|
156
|
-
edsl/scenarios/
|
157
|
-
edsl/scenarios/
|
158
|
+
edsl/scenarios/ScenarioList.py,sha256=9oxTglFTmKtkBexyNOLhIxocs1Jycuqf84OumHGsoII,18629
|
159
|
+
edsl/scenarios/ScenarioListExportMixin.py,sha256=h5_yc__e6XolY6yP6T8cka5zU1mko8T5xbIQtYijNWQ,1003
|
160
|
+
edsl/scenarios/ScenarioListPdfMixin.py,sha256=sRCHVG7z4u4ST4ce-I_Y4md8ZzC9-tj4an9PMouaHVg,3765
|
161
|
+
edsl/scenarios/__init__.py,sha256=KRwZCLf2R0qyJvv1NGbd8M51Bt6Ia6Iylg-Xq_2Fa6M,98
|
158
162
|
edsl/shared.py,sha256=lgLa-mCk2flIhxXarXLtfXZjXG_6XHhC2A3O8yRTjXc,20
|
159
163
|
edsl/study/ObjectEntry.py,sha256=e3xRPH8wCN8Pum5HZsQRYgnSoauSvjXunIEH79wu5A8,5788
|
160
164
|
edsl/study/ProofOfWork.py,sha256=FaqYtLgeiTEQXWKukPgPUTWMcIN5t1FR7h7Re8QEtgc,3433
|
@@ -163,13 +167,13 @@ edsl/study/Study.py,sha256=Rh4Wq4Qxlpb5fOBsrMIXYfiCn-THBS9mk11AZjOzmGw,16934
|
|
163
167
|
edsl/study/__init__.py,sha256=YAvPLTPG3hK_eN9Ar3d1_d-E3laXpSya879A25-JAxU,170
|
164
168
|
edsl/surveys/DAG.py,sha256=ozQuHo9ZQ8Eet5nDXtp7rFpiSocvvfxIHtyTnztvodg,2380
|
165
169
|
edsl/surveys/Memory.py,sha256=-ikOtkkQldGB_BkPCW3o7AYwV5B_pIwlREw7aVCSHaQ,1113
|
166
|
-
edsl/surveys/MemoryPlan.py,sha256=
|
170
|
+
edsl/surveys/MemoryPlan.py,sha256=BeLuqS5Q8G2jSluHYFCAxVmj7cNPK-rDQ3mUsuDjikQ,7979
|
167
171
|
edsl/surveys/Rule.py,sha256=ddZyZSObs4gsKtFSmcXkPigXDX8rrh1NFvAplP02TcA,11092
|
168
172
|
edsl/surveys/RuleCollection.py,sha256=sN7aYDQJG3HmE-WxohgpctcQbHewjwE6NAqEVTxvFP8,13359
|
169
|
-
edsl/surveys/Survey.py,sha256=
|
173
|
+
edsl/surveys/Survey.py,sha256=q-AbzbyOsRZw_zRLrdDOM7y5kYQT6XlgYKQfxjdm1AQ,47107
|
170
174
|
edsl/surveys/SurveyCSS.py,sha256=NjJezs2sTlgFprN6IukjGKwNYmNdXnLjzV2w5K4z4RI,8415
|
171
|
-
edsl/surveys/SurveyExportMixin.py,sha256=
|
172
|
-
edsl/surveys/SurveyFlowVisualizationMixin.py,sha256=
|
175
|
+
edsl/surveys/SurveyExportMixin.py,sha256=vj9bZReHx0wBK9sVuS0alzPIUDdg6AFFMd7bl1RKWKI,6555
|
176
|
+
edsl/surveys/SurveyFlowVisualizationMixin.py,sha256=Z-YqeedMqWOtCFy003YJ9aneJ1n4bn70lDoILwLtTc0,3966
|
173
177
|
edsl/surveys/__init__.py,sha256=vjMYVlP95fHVqqw2FfKXRuYbTArZkZr1nK4FnXzZWzs,129
|
174
178
|
edsl/surveys/base.py,sha256=n5PBx0BF0powzBXCsufpUekfNK_9huf3rohtU1mMCq0,1001
|
175
179
|
edsl/surveys/descriptors.py,sha256=3B-hBVvGpLlVBCyOnPuxkLjesvpr0QIuATbggp_MJ7o,2076
|
@@ -180,7 +184,7 @@ edsl/tools/embeddings_plotting.py,sha256=fznAqLnjF_K8PkJy1C4hBRObm3f8ebDIxQzrqRX
|
|
180
184
|
edsl/tools/plotting.py,sha256=DbVNlm8rNCnWHXi5wDPnOviZ1Qxz-rHvtQM1zHWw1f8,3120
|
181
185
|
edsl/tools/summarize.py,sha256=YcdB0IjZn92qv2zVJuxsHfXou810APWYKeaHknsATqM,656
|
182
186
|
edsl/utilities/SystemInfo.py,sha256=qTP_aKwECPxtTnbEjJ7F1QqKU9U3rcEEbppg2ilQGuY,792
|
183
|
-
edsl/utilities/__init__.py,sha256=
|
187
|
+
edsl/utilities/__init__.py,sha256=oUWx_h-8OFb1Of2SgIQZuIu7hX_bhDuwCSwksKGWZ6k,544
|
184
188
|
edsl/utilities/ast_utilities.py,sha256=49KDDu-PHYpzDN5cCaDf-ReQH-1dzjT5EG3WVSa8THk,868
|
185
189
|
edsl/utilities/data/Registry.py,sha256=q2DKc7CpG_7l47MxxsSi6DJOs4p1Z3qNx7PV-v8CUOE,176
|
186
190
|
edsl/utilities/data/__init__.py,sha256=pDjGnzC11q4Za8qX5zcg6plcQ_8Qjpb-sAKPwOlKmCY,62
|
@@ -189,11 +193,11 @@ edsl/utilities/decorators.py,sha256=rlTSMItwmWUxHQBIEUDxX3lFzgtiT8PnfNavakuf-2M,
|
|
189
193
|
edsl/utilities/gcp_bucket/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
194
|
edsl/utilities/gcp_bucket/cloud_storage.py,sha256=dStHsG181YP9ALW-bkyO-sgMWuLV5aaLsnsCOVD8jJw,3472
|
191
195
|
edsl/utilities/gcp_bucket/simple_example.py,sha256=pR_IH_Y640_-YnEyNpE7V_1MtBFC9nD3dg2NdSVcuXY,251
|
192
|
-
edsl/utilities/interface.py,sha256=
|
196
|
+
edsl/utilities/interface.py,sha256=AaKpWiwWBwP2swNXmnFlIf3ZFsjfsR5bjXQAW47tD-8,19656
|
193
197
|
edsl/utilities/repair_functions.py,sha256=tftmklAqam6LOQQu_-9U44N-llycffhW8LfO63vBmNw,929
|
194
198
|
edsl/utilities/restricted_python.py,sha256=5-_zUhrNbos7pLhDl9nr8d24auRlquR6w-vKkmNjPiA,2060
|
195
|
-
edsl/utilities/utilities.py,sha256=
|
196
|
-
edsl-0.1.
|
197
|
-
edsl-0.1.
|
198
|
-
edsl-0.1.
|
199
|
-
edsl-0.1.
|
199
|
+
edsl/utilities/utilities.py,sha256=oU5Gg6szTGqsJ2yBOS0aC3XooezLE8By3SdrQLLpqvA,10107
|
200
|
+
edsl-0.1.30.dev1.dist-info/LICENSE,sha256=_qszBDs8KHShVYcYzdMz3HNMtH-fKN_p5zjoVAVumFc,1111
|
201
|
+
edsl-0.1.30.dev1.dist-info/METADATA,sha256=tUJbcT1q2md-1v9-CvYx2xQcuGZ_XtrQHWOxUXz_Lp8,4103
|
202
|
+
edsl-0.1.30.dev1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
203
|
+
edsl-0.1.30.dev1.dist-info/RECORD,,
|
File without changes
|
File without changes
|