edsl 0.1.54__py3-none-any.whl → 0.1.56__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.
Files changed (105) hide show
  1. edsl/__init__.py +8 -1
  2. edsl/__init__original.py +134 -0
  3. edsl/__version__.py +1 -1
  4. edsl/agents/agent.py +29 -0
  5. edsl/agents/agent_list.py +36 -1
  6. edsl/base/base_class.py +281 -151
  7. edsl/base/data_transfer_models.py +15 -4
  8. edsl/buckets/__init__.py +8 -3
  9. edsl/buckets/bucket_collection.py +9 -3
  10. edsl/buckets/model_buckets.py +4 -2
  11. edsl/buckets/token_bucket.py +2 -2
  12. edsl/buckets/token_bucket_client.py +5 -3
  13. edsl/caching/cache.py +131 -62
  14. edsl/caching/cache_entry.py +70 -58
  15. edsl/caching/sql_dict.py +17 -0
  16. edsl/cli.py +99 -0
  17. edsl/config/config_class.py +16 -0
  18. edsl/conversation/__init__.py +31 -0
  19. edsl/coop/coop.py +276 -242
  20. edsl/coop/coop_jobs_objects.py +59 -0
  21. edsl/coop/coop_objects.py +29 -0
  22. edsl/coop/coop_regular_objects.py +26 -0
  23. edsl/coop/utils.py +24 -19
  24. edsl/dataset/dataset.py +338 -101
  25. edsl/dataset/dataset_operations_mixin.py +216 -180
  26. edsl/db_list/sqlite_list.py +349 -0
  27. edsl/inference_services/__init__.py +40 -5
  28. edsl/inference_services/exceptions.py +11 -0
  29. edsl/inference_services/services/anthropic_service.py +5 -2
  30. edsl/inference_services/services/aws_bedrock.py +6 -2
  31. edsl/inference_services/services/azure_ai.py +6 -2
  32. edsl/inference_services/services/google_service.py +7 -3
  33. edsl/inference_services/services/mistral_ai_service.py +6 -2
  34. edsl/inference_services/services/open_ai_service.py +6 -2
  35. edsl/inference_services/services/perplexity_service.py +6 -2
  36. edsl/inference_services/services/test_service.py +94 -5
  37. edsl/interviews/answering_function.py +167 -59
  38. edsl/interviews/interview.py +124 -72
  39. edsl/interviews/interview_task_manager.py +10 -0
  40. edsl/interviews/request_token_estimator.py +8 -0
  41. edsl/invigilators/invigilators.py +35 -13
  42. edsl/jobs/async_interview_runner.py +146 -104
  43. edsl/jobs/data_structures.py +6 -4
  44. edsl/jobs/decorators.py +61 -0
  45. edsl/jobs/fetch_invigilator.py +61 -18
  46. edsl/jobs/html_table_job_logger.py +14 -2
  47. edsl/jobs/jobs.py +180 -104
  48. edsl/jobs/jobs_component_constructor.py +2 -2
  49. edsl/jobs/jobs_interview_constructor.py +2 -0
  50. edsl/jobs/jobs_pricing_estimation.py +154 -113
  51. edsl/jobs/jobs_remote_inference_logger.py +4 -0
  52. edsl/jobs/jobs_runner_status.py +30 -25
  53. edsl/jobs/progress_bar_manager.py +79 -0
  54. edsl/jobs/remote_inference.py +35 -1
  55. edsl/key_management/key_lookup_builder.py +6 -1
  56. edsl/language_models/language_model.py +110 -12
  57. edsl/language_models/model.py +10 -3
  58. edsl/language_models/price_manager.py +176 -71
  59. edsl/language_models/registry.py +5 -0
  60. edsl/notebooks/notebook.py +77 -10
  61. edsl/questions/VALIDATION_README.md +134 -0
  62. edsl/questions/__init__.py +24 -1
  63. edsl/questions/exceptions.py +21 -0
  64. edsl/questions/question_dict.py +201 -16
  65. edsl/questions/question_multiple_choice_with_other.py +624 -0
  66. edsl/questions/question_registry.py +2 -1
  67. edsl/questions/templates/multiple_choice_with_other/__init__.py +0 -0
  68. edsl/questions/templates/multiple_choice_with_other/answering_instructions.jinja +15 -0
  69. edsl/questions/templates/multiple_choice_with_other/question_presentation.jinja +17 -0
  70. edsl/questions/validation_analysis.py +185 -0
  71. edsl/questions/validation_cli.py +131 -0
  72. edsl/questions/validation_html_report.py +404 -0
  73. edsl/questions/validation_logger.py +136 -0
  74. edsl/results/result.py +115 -46
  75. edsl/results/results.py +702 -171
  76. edsl/scenarios/construct_download_link.py +16 -3
  77. edsl/scenarios/directory_scanner.py +226 -226
  78. edsl/scenarios/file_methods.py +5 -0
  79. edsl/scenarios/file_store.py +150 -9
  80. edsl/scenarios/handlers/__init__.py +5 -1
  81. edsl/scenarios/handlers/mp4_file_store.py +104 -0
  82. edsl/scenarios/handlers/webm_file_store.py +104 -0
  83. edsl/scenarios/scenario.py +120 -101
  84. edsl/scenarios/scenario_list.py +800 -727
  85. edsl/scenarios/scenario_list_gc_test.py +146 -0
  86. edsl/scenarios/scenario_list_memory_test.py +214 -0
  87. edsl/scenarios/scenario_list_source_refactor.md +35 -0
  88. edsl/scenarios/scenario_selector.py +5 -4
  89. edsl/scenarios/scenario_source.py +1990 -0
  90. edsl/scenarios/tests/test_scenario_list_sources.py +52 -0
  91. edsl/surveys/survey.py +22 -0
  92. edsl/tasks/__init__.py +4 -2
  93. edsl/tasks/task_history.py +198 -36
  94. edsl/tests/scenarios/test_ScenarioSource.py +51 -0
  95. edsl/tests/scenarios/test_scenario_list_sources.py +51 -0
  96. edsl/utilities/__init__.py +2 -1
  97. edsl/utilities/decorators.py +121 -0
  98. edsl/utilities/memory_debugger.py +1010 -0
  99. {edsl-0.1.54.dist-info → edsl-0.1.56.dist-info}/METADATA +51 -76
  100. {edsl-0.1.54.dist-info → edsl-0.1.56.dist-info}/RECORD +103 -79
  101. edsl/jobs/jobs_runner_asyncio.py +0 -281
  102. edsl/language_models/unused/fake_openai_service.py +0 -60
  103. {edsl-0.1.54.dist-info → edsl-0.1.56.dist-info}/LICENSE +0 -0
  104. {edsl-0.1.54.dist-info → edsl-0.1.56.dist-info}/WHEEL +0 -0
  105. {edsl-0.1.54.dist-info → edsl-0.1.56.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: edsl
3
- Version: 0.1.54
3
+ Version: 0.1.56
4
4
  Summary: Create and analyze LLM-based surveys
5
5
  Home-page: https://www.expectedparrot.com/
6
6
  License: MIT
@@ -29,6 +29,7 @@ Requires-Dist: json-repair (>=0.28.4,<0.29.0)
29
29
  Requires-Dist: jupyter (>=1.0.0,<2.0.0)
30
30
  Requires-Dist: markdown2 (>=2.4.11,<3.0.0)
31
31
  Requires-Dist: matplotlib (>=3.8,<3.9)
32
+ Requires-Dist: memory-profiler (>=0.61.0,<0.62.0)
32
33
  Requires-Dist: mistralai (>=1.0.2,<2.0.0)
33
34
  Requires-Dist: nest-asyncio (>=1.5.9,<2.0.0)
34
35
  Requires-Dist: numpy (>=1.22,<2.0)
@@ -39,6 +40,7 @@ Requires-Dist: platformdirs (>=4.3.6,<5.0.0)
39
40
  Requires-Dist: pluggy (>=1.3.0,<2.0.0)
40
41
  Requires-Dist: pydot (>=2.0.0,<3.0.0)
41
42
  Requires-Dist: pygments (>=2.17.2,<3.0.0)
43
+ Requires-Dist: pymupdf (>=1.25.5,<2.0.0)
42
44
  Requires-Dist: pypdf2 (>=3.0.1,<4.0.0)
43
45
  Requires-Dist: pyreadstat (>=1.2.7,<2.0.0)
44
46
  Requires-Dist: python-docx (>=1.1.0,<2.0.0)
@@ -56,14 +58,53 @@ Requires-Dist: urllib3 (>=1.25.4,<1.27)
56
58
  Project-URL: Documentation, https://docs.expectedparrot.com
57
59
  Description-Content-Type: text/markdown
58
60
 
59
- # Expected Parrot Domain-Specific Language (EDSL)
60
-
61
- The Expected Parrot Domain-Specific Language (EDSL) package makes it easy to conduct computational social science and market research with AI. Use it to design surveys and experiments, collect responses from humans and large language models, and perform data labeling and many other research tasks. Results are formatted as specified datasets and come with built-in methods for analyzing, visualizing and sharing.
62
-
63
61
  <p align="right">
64
62
  <img src="https://github.com/expectedparrot/edsl/blob/main/static/logo.png?raw=true" alt="edsl.png" width="100"/>
65
63
  </p>
66
64
 
65
+ # Expected Parrot Domain-Specific Language (EDSL)
66
+
67
+ EDSL makes it easy to conduct computational social science and market research with AI. Use it to design and run surveys and experiments with many AI agents and large language models at once, or to perform complex data labeling and other research tasks. Results are formatted as specified datasets that can be replicated at no cost, and come with built-in methods for analysis, visualization and collaboration.
68
+
69
+ ## Getting started
70
+
71
+ 1. Run `pip install edsl` to install the package. See <a href="https://www.expectedparrot.com/getting-started" target="_blank" rel="noopener noreferrer">instructions</a>.
72
+
73
+ 2. <a href="https://www.expectedparrot.com/login" target="_blank" rel="noopener noreferrer">Create an account</a> to run surveys at the Expected Parrot server and access a <a href="https://docs.expectedparrot.com/en/latest/remote_caching.html" target="_blank" rel="noopener noreferrer">universal remote cache</a> of stored responses for reproducing results.
74
+
75
+ 3. Choose whether to use your own keys for language models or get an Expected Parrot key to access all available models at once. Securely <a href="https://www.expectedparrot.com/getting-started/edsl-api-keys" target="_blank" rel="noopener noreferrer">manage keys</a>, expenses and usage for your team from your account.
76
+
77
+ 4. Run the <a href="https://docs.expectedparrot.com/en/latest/starter_tutorial.html" target="_blank" rel="noopener noreferrer">starter tutorial</a> and explore other demo notebooks for a variety of use cases.
78
+
79
+ 5. Share workflows and survey results at <a href="https://www.expectedparrot.com/content/explore" target="_blank" rel="noopener noreferrer">Coop</a>: a free platform for creating and sharing AI research.
80
+
81
+ 6. Join our <a href="https://discord.com/invite/mxAYkjfy9m" target="_blank" rel="noopener noreferrer">Discord</a> for updates and discussions!
82
+
83
+ ## Code & Docs
84
+ - <a href="https://github.com/expectedparrot/edsl" target="_blank" rel="noopener noreferrer">GitHub</a>
85
+ - <a href="https://pypi.org/project/edsl/" target="_blank" rel="noopener noreferrer">PyPI</a>
86
+ - <a href="https://docs.expectedparrot.com" target="_blank" rel="noopener noreferrer">Documentation</a>
87
+
88
+ ## Requirements
89
+ - Python 3.9 - 3.12
90
+ - API keys for language models. You can use your own keys or an Expected Parrot key that provides access to all available models.
91
+ See instructions on <a href="https://docs.expectedparrot.com/en/latest/api_keys.html" target="_blank" rel="noopener noreferrer">managing keys</a> and <a href="https://www.expectedparrot.com/models" target="_blank" rel="noopener noreferrer">model pricing and performance</a> information.
92
+
93
+ ## Coop
94
+ An integrated platform for running experiments, sharing workflows and launching hybrid human/AI surveys.
95
+ - <a href="https://www.expectedparrot.com/login" target="_blank" rel="noopener noreferrer">Login / Signup</a>
96
+ - <a href="https://www.expectedparrot.com/content/explore" target="_blank" rel="noopener noreferrer">Explore</a>
97
+
98
+ ## Community
99
+ - <a href="https://blog.expectedparrot.com" target="_blank" rel="noopener noreferrer">Blog</a>
100
+ - <a href="https://discord.com/invite/mxAYkjfy9m" target="_blank" rel="noopener noreferrer">Discord</a>
101
+ - <a href="https://x.com/ExpectedParrot" target="_blank" rel="noopener noreferrer">Twitter</a>
102
+ - <a href="https://www.linkedin.com/company/expectedparrot/" target="_blank" rel="noopener noreferrer">LinkedIn</a>
103
+
104
+ ## Contact
105
+ - <a href="mailto:info@expectedparrot.com" target="_blank" rel="noopener noreferrer">Email</a>
106
+
107
+
67
108
  ## Features
68
109
 
69
110
  **Declarative design**:
@@ -91,14 +132,14 @@ results.select("example")
91
132
  <br>
92
133
 
93
134
  **Parameterized prompts**:
94
- Easily parameterize and control prompts with "<a href="https://docs.expectedparrot.com/en/latest/scenarios.html" target="_blank" rel="noopener noreferrer">scenarios</a>" of data automatically imported from many sources (CSV, PDF, PNG, etc.)(<a href="https://www.expectedparrot.com/content/7bb9ec2e-827b-4867-ac02-33163df1a1d1" target="_blank" rel="noopener noreferrer">view at Coop</a>):
135
+ Easily parameterize and control prompts with "<a href="https://docs.expectedparrot.com/en/latest/scenarios.html" target="_blank" rel="noopener noreferrer">scenarios</a>" of data automatically imported from many sources (CSV, PDF, PNG, etc.) (<a href="https://www.expectedparrot.com/content/7bb9ec2e-827b-4867-ac02-33163df1a1d1" target="_blank" rel="noopener noreferrer">view at Coop</a>):
95
136
 
96
137
  ```python
97
138
  from edsl import ScenarioList, QuestionLinearScale
98
139
 
99
140
  q = QuestionLinearScale(
100
141
  question_name = "example",
101
- question_text = "How much do you enjoy {{ activity }}?",
142
+ question_text = "How much do you enjoy {{ scenario.activity }}?",
102
143
  question_options = [1,2,3,4,5,],
103
144
  option_labels = {1:"Not at all", 5:"Very much"}
104
145
  )
@@ -139,12 +180,12 @@ results.select("persona", "example")
139
180
  > | agent.persona | answer.example |
140
181
  > |----------------|---------------------------------------------|
141
182
  > | botanist | ['Green', 'Earthy Brown', 'Sunset Orange'] |
142
- > | detective | ['Gray', 'Black', 'Navy Blye'] |
183
+ > | detective | ['Gray', 'Black', 'Navy Blue'] |
143
184
 
144
185
  <br>
145
186
 
146
187
  **Simplified access to LLMs**:
147
- Choose whether to use your own keys for LLMs, or access all <a href="https://www.expectedparrot.com/getting-started/coop-pricing" target="_blank" rel="noopener noreferrer">available models</a> with an Expected Parrot API key. Run surveys with many models at once and compare responses at a convenient inferface (<a href="https://www.expectedparrot.com/content/044465f0-b87f-430d-a3b9-4fd3b8560299" target="_blank" rel="noopener noreferrer">view at Coop</a>)
188
+ Choose whether to use your own API keys for LLMs, or access all <a href="https://www.expectedparrot.com/models" target="_blank" rel="noopener noreferrer">available models</a> with an Expected Parrot key. Run surveys with many models at once and compare responses at a convenient inferface (<a href="https://www.expectedparrot.com/content/044465f0-b87f-430d-a3b9-4fd3b8560299" target="_blank" rel="noopener noreferrer">view at Coop</a>)
148
189
 
149
190
  ```python
150
191
  from edsl import Model, ModelList, QuestionFreeText
@@ -201,27 +242,6 @@ results.select("color", "flower")
201
242
  **Caching**:
202
243
  API calls to LLMs are cached automatically, allowing you to retrieve responses to questions that have already been run and reproduce experiments at no cost. Learn more about how the <a href="https://docs.expectedparrot.com/en/latest/remote_caching.html" target="_blank" rel="noopener noreferrer">universal remote cache</a> works.
203
244
 
204
- **Logging**:
205
- EDSL includes a comprehensive logging system to help with debugging and monitoring. Control log levels and see important information about operations:
206
-
207
- ```python
208
- from edsl import logger
209
- import logging
210
-
211
- # Set the logging level
212
- logger.set_level(logging.DEBUG) # Show all log messages
213
-
214
- # Get a module-specific logger
215
- my_logger = logger.get_logger(__name__)
216
- my_logger.info("This is a module-specific log message")
217
-
218
- # Log messages at different levels
219
- logger.debug("Detailed debugging information")
220
- logger.info("General information about operation")
221
- logger.warning("Something unexpected but not critical")
222
- logger.error("Something went wrong")
223
- ```
224
-
225
245
  **Flexibility**:
226
246
  Choose whether to run surveys on your own computer or at the Expected Parrot server.
227
247
 
@@ -229,50 +249,5 @@ Choose whether to run surveys on your own computer or at the Expected Parrot ser
229
249
  Easily share workflows and projects privately or publicly at Coop: an integrated platform for AI-based research. Your account comes with free credits for running surveys, and lets you securely share keys, track expenses and usage for your team.
230
250
 
231
251
  **Built-in tools for analyis**:
232
- Analyze results as specified datasets from your account or workspace. Easily import data to use with your surveys and export results.
233
-
234
- ## Getting started
235
-
236
- 1. Run `pip install edsl` to install the package.
237
-
238
- 2. <a href="https://www.expectedparrot.com/login" target="_blank" rel="noopener noreferrer">Create an account</a> to run surveys at the Expected Parrot server and access a <a href="https://docs.expectedparrot.com/en/latest/remote_caching.html" target="_blank" rel="noopener noreferrer">universal remote cache</a> of stored responses for reproducing results.
239
-
240
- 3. Choose whether to use your own keys for language models or get an Expected Parrot key to access all available models at once. Securely <a href="https://docs.expectedparrot.com/en/latest/api_keys.html" target="_blank" rel="noopener noreferrer">manage keys</a>, share expenses and track usage for your team from your account.
241
-
242
- 4. Run the <a href="https://docs.expectedparrot.com/en/latest/starter_tutorial.html" target="_blank" rel="noopener noreferrer">starter tutorial</a> and explore other demo notebooks.
243
-
244
- 5. Share workflows and survey results at <a href="https://www.expectedparrot.com/content/explore" target="_blank" rel="noopener noreferrer">Coop</a>
245
-
246
- 6. Join our <a href="https://discord.com/invite/mxAYkjfy9m" target="_blank" rel="noopener noreferrer">Discord</a> for updates and discussions! Request new features!
247
-
248
- ## Code & Docs
249
- - <a href="https://pypi.org/project/edsl/" target="_blank" rel="noopener noreferrer">PyPI</a>
250
- - <a href="https://github.com/expectedparrot/edsl" target="_blank" rel="noopener noreferrer">GitHub</a>
251
- - <a href="https://docs.expectedparrot.com" target="_blank" rel="noopener noreferrer">Documentation</a>
252
-
253
- ## Requirements
254
- - Python 3.9 - 3.12
255
- - API keys for language models. You can use your own keys or an Expected Parrot key that provides access to all available models.
256
- See instructions on <a href="https://docs.expectedparrot.com/en/latest/api_keys.html" target="_blank" rel="noopener noreferrer">managing keys</a> and <a href="https://www.expectedparrot.com/getting-started/coop-pricing" target="_blank" rel="noopener noreferrer">model pricing and performance</a> information.
257
-
258
- ## Developer Notes
259
-
260
- ### Running Tests
261
- - Unit tests: `python -m pytest tests/`
262
- - Integration tests: `python -m pytest integration/`
263
- - Doctests: `python run_doctests.py` (use `-v` flag for verbose output)
264
-
265
- ## Coop
266
- An integrated platform for running experiments, sharing workflows and launching hybrid human/AI surveys.
267
- - <a href="https://www.expectedparrot.com/login" target="_blank" rel="noopener noreferrer">Login / Signup</a>
268
- - <a href="https://www.expectedparrot.com/content/explore" target="_blank" rel="noopener noreferrer">Explore</a>
269
-
270
- ## Community
271
- - <a href="https://discord.com/invite/mxAYkjfy9m" target="_blank" rel="noopener noreferrer">Discord</a>
272
- - <a href="https://x.com/ExpectedParrot" target="_blank" rel="noopener noreferrer">Twitter</a>
273
- - <a href="https://www.linkedin.com/company/expectedparrot/" target="_blank" rel="noopener noreferrer">LinkedIn</a>
274
- - <a href="https://blog.expectedparrot.com" target="_blank" rel="noopener noreferrer">Blog</a>.
275
-
276
- ## Contact
277
- - <a href="mailto:info@expectedparrot.com" target="_blank" rel="noopener noreferrer">Email</a>.
252
+ Analyze results as specified datasets from your account or workspace. Easily import data to use with your surveys and export results..
278
253
 
@@ -1,53 +1,58 @@
1
- edsl/__init__.py,sha256=SXi_Zm4kf6H2WW_YeTuF6zRNZEWKzpKa7NRXUzn2Ty4,4593
2
- edsl/__version__.py,sha256=0U9S9zRz7MduvARyiWFUbfYZNKDf9XCo9-1NqTcx3CU,23
1
+ edsl/__init__.py,sha256=EkpMsEKqKRbN9Qqcn_y8CjX8OjlWFyhxslLrt3SJY0Q,4827
2
+ edsl/__init__original.py,sha256=PzMzANf98PrSleSThXT4anNkeVqZMdw0tfFonzsoiGk,4446
3
+ edsl/__version__.py,sha256=sAxmq9B-f2SmXYi2UsleAKRrYxtQcxVilh7UIDB0-yM,23
3
4
  edsl/agents/__init__.py,sha256=AyhfXjygRHT1Pd9w16lcu5Bu0jnBmMPz86aKP1uRL3Y,93
4
- edsl/agents/agent.py,sha256=svTVvvg9eCMUhnb49Bxsf9nAwXragtRaeBkyB6q89EE,54423
5
- edsl/agents/agent_list.py,sha256=JA39_6RSmiD2mqJgWr2NWovNxNmu4mhZbYmn5be87NQ,21572
5
+ edsl/agents/agent.py,sha256=J0y8dH8tWXffiAVhyPEWJ4xmOKdi-XtSrSlMJ08fd58,55606
6
+ edsl/agents/agent_list.py,sha256=-bm8jozPPIHJAqb-1nt9m3TZGw5-tgg4LAjz5Mpj0AE,23071
6
7
  edsl/agents/descriptors.py,sha256=TfFQWJqhqTWyH89DkNmK6qtH3xV2fUyW9FbI5KnZXv0,4592
7
8
  edsl/agents/exceptions.py,sha256=7KMAtAHKqlkVkd_iVZC_mWXQnzDPV0V_n2iXaGAQgzc,5661
8
9
  edsl/base/__init__.py,sha256=h119NxrAJOV92jnX7ussXNjKFXqzySVGOjMG3G7Zkzc,992
9
- edsl/base/base_class.py,sha256=2OLxpJPyj0kZA7_pRp8qppN7lAXQn2SFvKn2eaA3WpU,45564
10
+ edsl/base/base_class.py,sha256=bpuKCf6OOl71OlhrInDLC4b8LxFfDnuMVaaEaSp7ECY,48158
10
11
  edsl/base/base_exception.py,sha256=gwk4mNoS3TBe6446NiQeSrUrjUqjlB3_fcDFgV90Dms,7644
11
- edsl/base/data_transfer_models.py,sha256=XTff7CXcVFR5FDSrUE-PWtS8xtmjxYdS3gPuKVDuiU4,3234
12
+ edsl/base/data_transfer_models.py,sha256=j_7qQIlP73WxFEPvU6lL4RSN_CV8xihpYAl0OM62dW4,3677
12
13
  edsl/base/enums.py,sha256=njo1lEsjB4Xf0loTerks8eWMTP0JResqzd5kZuclS-w,6447
13
14
  edsl/base/exceptions.py,sha256=hEMu40lW1IsuarZiOJAL2sAUwuxsubxfR41J6BK5Ri8,3493
14
15
  edsl/base.py,sha256=9Jx5zXfWLtKAm0L7LD_kTF3rSIR-tlEuCEuXDbeqHxI,221
15
- edsl/buckets/__init__.py,sha256=VG1ZZltuACcKQbQ7puH_SLdk9sojWiPw-yIoL2IWoY0,1350
16
- edsl/buckets/bucket_collection.py,sha256=nbOdzgqAqNKqIDpOUPONVMmFzxqqcf5HPl3xFjdCEP4,13180
16
+ edsl/buckets/__init__.py,sha256=g3VzxuhrC4wO1i6sljXAcJ_k6MNAu_OH-wAmSfzxBjI,1536
17
+ edsl/buckets/bucket_collection.py,sha256=vIHaf7D4I2hd3TvgNny4IYOWYboPahyb0ofrIEoo3bA,13360
17
18
  edsl/buckets/exceptions.py,sha256=e9PhWdsG4znvMh2h-FS7GgQsyGEmU4_Y-vhqQSeWQPg,3539
18
- edsl/buckets/model_buckets.py,sha256=T706pzOjAC2NU6h-gYPr1UW63TGEQwMBkKelydObyBk,8294
19
- edsl/buckets/token_bucket.py,sha256=0aDXqLEesI-GoM3esVaSaMkYQleeEHAd7xaDKnSVLuY,20157
19
+ edsl/buckets/model_buckets.py,sha256=0ppuaGygihzd6awJD_HNARvbdh7qCbldF4l2KOsBjyQ,8390
20
+ edsl/buckets/token_bucket.py,sha256=aywSTjawhoV3A9HTrBMutuCj5HaOKfQa2FypmB_HgFI,20199
20
21
  edsl/buckets/token_bucket_api.py,sha256=w__ipET9H2w19J1VGOvghN8xqqsgXcgUPp8MVtVTQvE,7243
21
- edsl/buckets/token_bucket_client.py,sha256=7rlwQh0PlVYPEWBdhDzOCRffG54giyPT5ydrINb5cBs,20027
22
+ edsl/buckets/token_bucket_client.py,sha256=EumIXaZ0aaaQyhkGp6IsarkqQMBMtp3lYwKlMUfyneA,20117
22
23
  edsl/caching/__init__.py,sha256=aKqxYVzk1FSEdyvknPq88xoofsVJsRCRrC--LTzbRGI,753
23
- edsl/caching/cache.py,sha256=3lwRgDluZw-i1Fxo9mTj6OFDfe0tGn4tAUY0ac2RRrc,30956
24
- edsl/caching/cache_entry.py,sha256=Ocam03hl7L8Xb3cvgX2KjEb_pmyW2aGGa94n1B0MBC4,16237
24
+ edsl/caching/cache.py,sha256=efySIb2Nf8n_qaGZ1w32mY2jbQoWYTwlXSQYh7czDWs,32858
25
+ edsl/caching/cache_entry.py,sha256=OzQYVBNom8oSgcXDDtOLbJj0NrJFb7-kgnh4VS3jerA,16114
25
26
  edsl/caching/cache_handler.py,sha256=YXROqkybCAJ3-18JvRbG8Yrn8TGA-FuetXbJasaJ8ng,5148
26
27
  edsl/caching/exceptions.py,sha256=gwYiNVq4T5TvYLPBIkVs2hEHNGEsceTk3bTxCNqhzJ0,4714
27
28
  edsl/caching/orm.py,sha256=3SbXvE7e-01wkqxenPa0ZrkJzZwn2r4ekpc_sqLqAxU,964
28
29
  edsl/caching/remote_cache_sync.py,sha256=zyWT_v0FSnVNPRjRtUY7ko5HAieyEBustZmf_XX1sKY,6045
29
- edsl/caching/sql_dict.py,sha256=GVl410IKkAxF5kADlfHipMoNX4-8FCEdO2vAzNznpvc,15684
30
- edsl/cli.py,sha256=7sg3Ib-GP8fLj4k2j97AWIDOC4TeI_uD9mYuqYvFFvI,1082
30
+ edsl/caching/sql_dict.py,sha256=ZyEAgZ2bjV6mbA5zrdTNuTglZynvK4wnmOfbHm9tcDM,16250
31
+ edsl/cli.py,sha256=D6PkSvSMy0Rx4RMOxUVOLUa1QLMhQP4U4wem1ydAjjU,5065
31
32
  edsl/config/__init__.py,sha256=gtGWj4XNwfvicezcyqcFbCcApd_i5-jBaFc-HRC9LFU,317
32
- edsl/config/config_class.py,sha256=7c9HFsWRAwwbZaaVeOcqcSI45Q1OYvbGmmeQWGmSLwo,7995
33
+ edsl/config/config_class.py,sha256=-DpGLwWj09f29l_Ub4ITxiBkiOjlu8XtQGkKqL-oKoI,8951
33
34
  edsl/config.py,sha256=bGl4u37pgyOUVPaqloZQ-92qG7TmC4Den7KA-icXkcg,165
34
35
  edsl/conversation/Conversation.py,sha256=5mBvzXfpVjJI2yNTWdeuxvgtVG22-_zgBmRjY9qcJ38,9706
36
+ edsl/conversation/__init__.py,sha256=D6Tr2B-HDNOwKgKC7Kw1I-14MMU_QO2Z89H8IS6k9pM,978
35
37
  edsl/conversation/car_buying.py,sha256=JVf4JUMwXZSyuQEBnPnamxeLL2FmXK70x3KKaQVYxkQ,1913
36
38
  edsl/conversation/chips.py,sha256=eEehLLQwm06QOH4B-kD7JsN7hFqQrkMOKLnjdNqqJas,3296
37
39
  edsl/conversation/exceptions.py,sha256=DoUCg-ymqGOjOl0cpGT8-sNRVsr3SEwdxGAKtdeZ2iI,1934
38
40
  edsl/conversation/mug_negotiation.py,sha256=do3PTykM6A2cDGOcsohlevRgLpCICoPx8B0WIYe6hy8,2518
39
41
  edsl/conversation/next_speaker_utilities.py,sha256=bqr5JglCd6bdLc9IZ5zGOAsmN2F4ERiubSMYvZIG7qk,3629
40
42
  edsl/coop/__init__.py,sha256=DU2w1Nu8q6tMAa3xoPC722RrvGhmB_UgUUBJDUywsKY,1542
41
- edsl/coop/coop.py,sha256=Dl2rpuu8g07AakPBVthVDMGxsSKcZN8NNyUbJQLh1Vk,64647
43
+ edsl/coop/coop.py,sha256=cf7E8PaTi3jcgPXGtpIsx2x8AM-TxGXNfcw8zrjUoFs,65537
42
44
  edsl/coop/coop_functions.py,sha256=d31kddfj9MVZaMhqwUvkSIBwrdCTQglIvFWVfUr4NuE,688
45
+ edsl/coop/coop_jobs_objects.py,sha256=_OFPVLKswXY9mKl9b3Y7gxlUhaMZ7GULx5OqyANpecU,1701
46
+ edsl/coop/coop_objects.py,sha256=_cEspdAxh7BT672poxb0HsjU-QZ4Kthg-tKDvZ6I_v0,859
47
+ edsl/coop/coop_regular_objects.py,sha256=indDQPeesQjHEX_CkICpJPI7o-R8KX66m9DOR9Z48w8,772
43
48
  edsl/coop/ep_key_handling.py,sha256=X0tskEaYKsRIbFUijaCL69uHYpLJcLbYFITzAu3PGJE,7872
44
49
  edsl/coop/exceptions.py,sha256=EY3eNTeJM15VzFnag93hgmiqn4pR3Y-6nS9ixKGIhM8,8874
45
50
  edsl/coop/price_fetcher.py,sha256=uvEPgKaSRsFq-ouRl5W9aksawUkJg9Lo7ucSePecwa4,4735
46
- edsl/coop/utils.py,sha256=5xjVSYjyixLdJgoM_iQL2Bqtk_xlbWLBCBngv9BmNRM,6643
51
+ edsl/coop/utils.py,sha256=N8RvZc-PZvz78sJJvyEW_66smWI3f4AlG5iJjoQ-_ZA,6530
47
52
  edsl/data_transfer_models.py,sha256=pPaKsbo9pgNcBB9kX-U2O_dUtNkd0Xm4JNmv26jrbhI,265
48
53
  edsl/dataset/__init__.py,sha256=RIzfFIytKJfniKZ0VThMk8Z2fjejx91t9PZBct78xXw,422
49
- edsl/dataset/dataset.py,sha256=Ehwbc1yg_6QdnjrZ4_6XKp1XbFn6Lx6EVayoqhJ67qg,30489
50
- edsl/dataset/dataset_operations_mixin.py,sha256=y_EBa3TZUUJYsxQGjoB9pTONFKvHg3gNMkWz5NX551A,59221
54
+ edsl/dataset/dataset.py,sha256=kfjfF4B-SlTeBL2FHDiLdwTZOm8RmWqTUOTQStNiOqk,39563
55
+ edsl/dataset/dataset_operations_mixin.py,sha256=dVjTLHjBW9oQ55k3EZnhG89JHPxxYG-nfk0lmPqkuMQ,58212
51
56
  edsl/dataset/dataset_tree.py,sha256=mKLQhwo-gxDyJCwCH3gj6Os0Jk2JqfWd_PvUyuWqM6s,14268
52
57
  edsl/dataset/display/CSSParameterizer.py,sha256=vI3VTgTihJeCYGfmGp7fOhTitHZ17jrDGbq46Sa2rd8,3677
53
58
  edsl/dataset/display/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -59,16 +64,17 @@ edsl/dataset/exceptions.py,sha256=1s2MRR6i4kzL34cCTSbApmVsBtdnt3i85KUOJO3r-oo,39
59
64
  edsl/dataset/file_exports.py,sha256=6F-svjCXo0Al_it3jQzBg1lxO35WgOgkS0g3rXGbJN4,8139
60
65
  edsl/dataset/r/ggplot.py,sha256=H0krQixhuR9muz4CMnT1zB-EtN2l0MhEgRgTV6M3wQo,6926
61
66
  edsl/dataset/tree_explore.py,sha256=hQjiO4E71rIOPDgEHgK8T8ukxqoNdgX_tvyiDlG4_9U,4624
67
+ edsl/db_list/sqlite_list.py,sha256=EXv3ivJGVHuDZpesMU5DOOUrNPXaMnP5U3ISWwdUEwg,12574
62
68
  edsl/display/__init__.py,sha256=aoLlMGphs3a12nMw9AL86n1IUHiB9Efpjgx_LcLXCE8,736
63
69
  edsl/display/core.py,sha256=3Wd3evjQNtgSxQ8-Qt0O61Nikl-2ErgccSzqatWpRas,5024
64
70
  edsl/display/plugin.py,sha256=t4ac8ko-pLT1KhYy8RKzhyTb4q4Mk5HWsh0RKzpXX08,5805
65
71
  edsl/display/utils.py,sha256=XxijJfUMZQqtHdm4CLuCkfSIcwZQuiCx-hi9YC000ew,1663
66
72
  edsl/enums.py,sha256=S829T_eEoCHM8sawhX8T649pb2IIezAN-D_jbt0ZoCE,205
67
- edsl/inference_services/__init__.py,sha256=iSPvUwfHJrlBoH_L77ODMxKrgvYUkMGPvzy16ANR9ho,389
73
+ edsl/inference_services/__init__.py,sha256=gcM78qC7kvketu3ditO-dRFJkhioP_V-ppBMKJKtJmc,1771
68
74
  edsl/inference_services/available_model_cache_handler.py,sha256=nELA2DPHatM7l_nM_9cFcjEwXLrFMlA_rwm310bSxKY,6109
69
75
  edsl/inference_services/available_model_fetcher.py,sha256=thwPtQ2JwRoMWc51rWVBqdW9Lk9dfyxwmganWeTqwMI,7780
70
76
  edsl/inference_services/data_structures.py,sha256=FLP1zdauC6TaRmGjzgAEO3vSlOkvWsPHo33XGL7Tdr0,4149
71
- edsl/inference_services/exceptions.py,sha256=NZI7slEzXH5pSyhGLpH3XhPEJYNb-TbJ1I6QQwOkgGU,5377
77
+ edsl/inference_services/exceptions.py,sha256=nCrF9LzrFGouoxro58e9Urz5q_UDysDiOiL6CRK-dik,5657
72
78
  edsl/inference_services/inference_service_abc.py,sha256=5pWm9hE_San5mCgIWVZyNKB97pp5gb4QH95oY9HA90c,2117
73
79
  edsl/inference_services/inference_services_collection.py,sha256=QptRm1JCfT-An6qbxPqNgFHOOFH6Oek1wJ2io9W9LBY,4954
74
80
  edsl/inference_services/models_available_cache.py,sha256=bOvevfRn2HlmBcHalaDkjFLxiw0JJhsXVUHZo_OhgjA,4061
@@ -76,18 +82,18 @@ edsl/inference_services/rate_limits_cache.py,sha256=HYslviz7mxF9U4CUTPAkoyBsiXjS
76
82
  edsl/inference_services/registry.py,sha256=KIs1GpGSrczqukm6QsKe9pPn9LnfSrpT_wVAthU3-HM,307
77
83
  edsl/inference_services/service_availability.py,sha256=z4rkonyD51Y-flKoxrpxBZIfOqjNrOXCxWCmA0mlUDU,4176
78
84
  edsl/inference_services/services/__init__.py,sha256=y28_A9Sbza0-kWC041ocLTBXsWvPObEFHTIbjFl2nBE,939
79
- edsl/inference_services/services/anthropic_service.py,sha256=hkn2YL2o8DGct16xMplm24ZZTE7KJR8Dih8eVQHcQec,4029
80
- edsl/inference_services/services/aws_bedrock.py,sha256=PP8Qsc1gYJKXBYZZFrnwGHawqUkhoGYXvaJrweU5bDM,4084
81
- edsl/inference_services/services/azure_ai.py,sha256=xnvpkwJcbyTGf-aIsIsgnK-5zma3-8q_kGQRJ5R8LWE,9235
85
+ edsl/inference_services/services/anthropic_service.py,sha256=yeSdXbqZ0RxXd2NKOrgXM4V5K2ioV_W1h-qujsPQpRU,4212
86
+ edsl/inference_services/services/aws_bedrock.py,sha256=tijqEp4IgKWeJiqR90T3zkeXaqA0Qat9h5eyhG1qY3M,4285
87
+ edsl/inference_services/services/azure_ai.py,sha256=7tZzyOhvT0eRooO2hccTZNghykth1e05MWlUKZNovpo,9436
82
88
  edsl/inference_services/services/deep_infra_service.py,sha256=zHllzatsfvXrSV4MZ92Z8LJwfucmjMqDzvqkg038DAc,321
83
89
  edsl/inference_services/services/deep_seek_service.py,sha256=eo78-AaKhLDalo09PrYztIm-6OXO7fv8tX5QB2tG25o,304
84
- edsl/inference_services/services/google_service.py,sha256=dbB20NkIfytX2EXmkQfpeaQp_zFhkxLmJf-WVwxLdlY,5283
90
+ edsl/inference_services/services/google_service.py,sha256=DXvAjMMP66q6TBtQxk2CXkZyvmM0qmQcYBwActkYi7s,5428
85
91
  edsl/inference_services/services/groq_service.py,sha256=eSxVbQXzrc6rtgVyMgDOsdG08n1m8YqPaB8gp_Ia3IE,484
86
- edsl/inference_services/services/mistral_ai_service.py,sha256=Q4eWCAUhsibMaBpq5IdGAovt1hgNd1flU5Fz0JBL8M8,3724
92
+ edsl/inference_services/services/mistral_ai_service.py,sha256=tvwIeqhwzT6kPjrUo_lO3QCSBYUGD7jHG010FPp72Z4,3925
87
93
  edsl/inference_services/services/ollama_service.py,sha256=quSKlgD0bHG9mO_s9verGePfqQi_rZWovHEQ6dy-Fe0,303
88
- edsl/inference_services/services/open_ai_service.py,sha256=_gK1MVJGla-LF9YvySNuVDY5g-SmSsNhByEfIO7usAI,8481
89
- edsl/inference_services/services/perplexity_service.py,sha256=th6Zx3YNBBc4MsgjzmpkAfqMwqrPNFBdAhmUxed-gYM,5793
90
- edsl/inference_services/services/test_service.py,sha256=1skcodQ9JN7IsIeaperh7gxeQ_CGEQkO2mamNQTHAx0,3363
94
+ edsl/inference_services/services/open_ai_service.py,sha256=WFcl9g7Y28hckdiD_bPxRL_yJqz9ukERL3h_znh6b80,8682
95
+ edsl/inference_services/services/perplexity_service.py,sha256=7bt5Mb6Dxkb7UOljNdTBpZuT_8ri4i6Sk_h5g8paKu4,5994
96
+ edsl/inference_services/services/test_service.py,sha256=rJlXGyMbHcYpws3zH23taoA2Pq5sYiYpc52jYNoIfe0,7393
91
97
  edsl/inference_services/services/together_ai_service.py,sha256=biUYs07jsrIHp19O81o0nJCwYdSWudMEXdGtmA1-y60,6151
92
98
  edsl/inference_services/services/xai_service.py,sha256=hJbXF26DuFTZdy0lYT1wo3yyuWDcwcXA6EiGYUahK1w,280
93
99
  edsl/inference_services/write_available.py,sha256=9L8chJb8iafHfwRBfqZKjMjkSBRWUa5gEe7F0mxsZu0,261
@@ -99,68 +105,67 @@ edsl/instructions/instruction_collection.py,sha256=q8BBsMXIrjrZBxphmJ1W95fbauHeJ
99
105
  edsl/instructions/instruction_handler.py,sha256=MXy0LSyAUE5H2G8Pdhs-WerZM8VWGqNRw816IBO66vo,4252
100
106
  edsl/interviews/ReportErrors.py,sha256=5NC6fFGaVe6Qk4gnFd7fUFRsw9MKb7g4MFOr-EblS0o,1728
101
107
  edsl/interviews/__init__.py,sha256=BC6NBomroZEc8uwOeZBMtVuXwAVQzTzm7kkgDBqEBic,328
102
- edsl/interviews/answering_function.py,sha256=Pghd5Tx95xASWB9DS2P85mhSponNpKZYmlYd88Eiwqk,9599
108
+ edsl/interviews/answering_function.py,sha256=zmUMGP1xSpDm49_dqj39g8BoGGy0OmhlcUrJQvUyio8,13695
103
109
  edsl/interviews/exception_tracking.py,sha256=Vgc6UVnzRdln_ZrxxcZVDGC7B0u_cQOQHpaJ0I2TWvo,10201
104
110
  edsl/interviews/exceptions.py,sha256=qID-2HnSHJt5DyxBQd4698GZfTEu8rwk_VbIrBHcIRc,2626
105
- edsl/interviews/interview.py,sha256=_ZeIhDbPZSohc4t4a6G-DzVs6_poqs3om5bEDvVVxPo,25225
111
+ edsl/interviews/interview.py,sha256=LyLY6kbjeUih_DREgIU38AIkrSWsKqSSgoVoLiUMlCE,26450
106
112
  edsl/interviews/interview_status_dictionary.py,sha256=0ZvXLusfOA8xD_Fco4PjEBGwmR2sizHOGijTQI8RrI8,3031
107
113
  edsl/interviews/interview_status_enum.py,sha256=KJ-1yLAHdX-p8TiFnM0M3v1tnBwkq4aMCuBX6-ytrI8,229
108
114
  edsl/interviews/interview_status_log.py,sha256=sRiQ9kIT1WcF-8beETn6E7IsdRRrfbco-yjdAjkXncw,3587
109
- edsl/interviews/interview_task_manager.py,sha256=wPi5izhsVK5wI5HfMXMLL5NIoucHNCoGXfRuRzI-wYE,3665
110
- edsl/interviews/request_token_estimator.py,sha256=n_C-alSYOFi27cBcIRhtBX-fvklDcvM2Kowte-EDnzM,4833
115
+ edsl/interviews/interview_task_manager.py,sha256=tvW1feofR6tTDsPcd0V0x0jjw0Gp0qvvigkf-qeepT4,4029
116
+ edsl/interviews/request_token_estimator.py,sha256=ZfDQWgIoozlF7PSPrYaxczknr_Xt49UchSnIkvIlSb4,5273
111
117
  edsl/interviews/statistics.py,sha256=lZCtq79QrDKG3jXao_OWuBRhnly9VyuhM6IdTJaYqPg,2461
112
118
  edsl/invigilators/__init__.py,sha256=fKbZ7p9-kMelpvET3Ku2Owu-tL_apC-8gi9JychpMBY,1843
113
119
  edsl/invigilators/exceptions.py,sha256=ejoF-Gt-YcnW1yHyfpJ3jZm8AC_zD0GCYafRO2LlAMQ,2767
114
120
  edsl/invigilators/invigilator_base.py,sha256=DgrXTK4AAxXr4wg2pzc0p1aGPPf1UUt01C-JW1UBTvo,20099
115
- edsl/invigilators/invigilators.py,sha256=hY66Nwl1_Y-f_MAs7iqbU36zRQTKQA4JuW2Zi2Rq4qc,22365
121
+ edsl/invigilators/invigilators.py,sha256=84dtOXJJX-oEiKDRAfir6iEKb7ovfB2FUWBKjykeUiE,23787
116
122
  edsl/invigilators/prompt_constructor.py,sha256=THHGcZPI-QUOH8Z9cQEzH7bZEoo0V_Nc_Phlhc9AzL0,19115
117
123
  edsl/invigilators/prompt_helpers.py,sha256=LuMZFZkInPY8M7Rw9fG9rpJIcT89tr2_Iq10ZHH_Y4A,5409
118
124
  edsl/invigilators/question_instructions_prompt_builder.py,sha256=E5zpwctpt_5JjONkZRcMwB0MACAzDvvnzUhmuWTnjd0,9684
119
125
  edsl/invigilators/question_option_processor.py,sha256=TRJgeFUH4m2EUlkjWkXnMWiE_CXQjO0gHyPOd_qjbec,9504
120
126
  edsl/invigilators/question_template_replacements_builder.py,sha256=a_-n0TWE4PLK_u_b0lNd_k_omXh-GoZHAxt6XWunz5c,11918
121
127
  edsl/jobs/__init__.py,sha256=gBGDlPZiaTkKENGdGYaMKzk0BFf5R1Cv9yk2YMPvIqI,1183
122
- edsl/jobs/async_interview_runner.py,sha256=1g9hXPLLXpwR_RYZsxkdbx893Am8cGBRn-14YKqs4ek,7163
128
+ edsl/jobs/async_interview_runner.py,sha256=rj07EKRu4fjbBkTADn8RAxbMF6m3vZFOG1qtnn0g12U,9532
123
129
  edsl/jobs/check_survey_scenario_compatibility.py,sha256=9qD9qi6qjvC-4M3Mq2bSF8F5HMIbWilSVPSJ3wlFqmM,4022
124
- edsl/jobs/data_structures.py,sha256=MYJwpFpJvQjw36uRoNIXHckSMXyqyuB4PbOV3tA2b4c,9651
125
- edsl/jobs/decorators.py,sha256=vpeSgI3EP4RFz5V_OclFdnhiSrswihavAN8C9ygRhGE,1135
130
+ edsl/jobs/data_structures.py,sha256=i-XXq2zul1K1aOZDZXbPIO8l-0bJLqDL2t7pxITXbks,9869
131
+ edsl/jobs/decorators.py,sha256=0Eot9pFPsWmQIJAafNd0f5hdb9RUAFp_hGMmSUTJ_C8,3272
126
132
  edsl/jobs/exceptions.py,sha256=5lktTya2VgiBR5Bd977tG2xHdrMjDqhPhQO17O6jIdc,7220
127
- edsl/jobs/fetch_invigilator.py,sha256=y9Qf3e5sdEwdljs6sZzO1YYSy3ATI4Vd01ZUO4oJEvY,1712
128
- edsl/jobs/html_table_job_logger.py,sha256=N4dx0NBs_wzLf30ecHqF0jT1B5BCDzlfixAEq7E0PAA,20165
129
- edsl/jobs/jobs.py,sha256=HI8akFqRbDVEeT8DuIy2i_tyEx6Gnv3oOU7SS0TrmcM,38931
133
+ edsl/jobs/fetch_invigilator.py,sha256=nzXAIulvOvuDpRDEN5TDNmEfikUEwrnS_XCtnYG2uPQ,2795
134
+ edsl/jobs/html_table_job_logger.py,sha256=4ouDnUWFsDQGl51wy95HsDHBYU8RyWRmvHE8WZ_Qfjw,20670
135
+ edsl/jobs/jobs.py,sha256=WL3ODJ4HBElnw2XVaPXqfvHzyTsEe0XeUghOZOyI0FA,42334
130
136
  edsl/jobs/jobs_checks.py,sha256=bfPJ3hQ4qvRBhyte4g-4J8zExJxJr3nlLHmtVmFPJcQ,5390
131
- edsl/jobs/jobs_component_constructor.py,sha256=XxnJCQEJVC99QHNXjhR3lCfzSn46Z0JMtkgHRiBUfj8,6907
132
- edsl/jobs/jobs_interview_constructor.py,sha256=1XTfQ-XAsabIagYQWWn9jLkdXAWqw_7KffNVLQWCfDs,2001
133
- edsl/jobs/jobs_pricing_estimation.py,sha256=rb4zr0d8DicLmHy2_0l1qVAdskCyBLrXeqtz5Qa60c8,15433
134
- edsl/jobs/jobs_remote_inference_logger.py,sha256=1lOlzsBXg69zwVP40Je-WiI4wcvS-Ov7BBuW6V4Mkes,9185
135
- edsl/jobs/jobs_runner_asyncio.py,sha256=wSs_Ts__-2BbPqZ_xQG7BM1mQ1YqZFliPUoq9MFuSUY,11034
136
- edsl/jobs/jobs_runner_status.py,sha256=hIHHC_sWkK6clqQwnxz8YXAvwrEoL-VVtwWnHij3vfw,10446
137
+ edsl/jobs/jobs_component_constructor.py,sha256=9956UURv3eo-cURNPd4EV8wAQsY-AlEtQRmBu1nCOH8,6982
138
+ edsl/jobs/jobs_interview_constructor.py,sha256=8nIhhwBQWH_aZ9ZWjvRgOL0y2y6juRTb3pVngQ9Cs8g,2017
139
+ edsl/jobs/jobs_pricing_estimation.py,sha256=u7LHxCH5DF1rJvPkjjAQxlxu58m1qoAyHi8sIFtZM4U,16828
140
+ edsl/jobs/jobs_remote_inference_logger.py,sha256=2v3uxkq2UA10UEiwTFGAaC7ekYC0M0UGK3U67WvATpk,9325
141
+ edsl/jobs/jobs_runner_status.py,sha256=ME0v4TTH7qzS4vOROGtNKaWqHZmhzrCl_-FeTRSa9C8,10701
137
142
  edsl/jobs/jobs_status_enums.py,sha256=8Kgtr-ffcGGniQ2x5gCOqwURb_HaBWmYcWbUB_KTCY0,214
138
- edsl/jobs/remote_inference.py,sha256=pUwxo0isuzk0qHXm8jAkRjvqdnD5LvJemkfWGcGloCM,13185
143
+ edsl/jobs/progress_bar_manager.py,sha256=d8wuZf7SHq3LCA36JIv1sfYymyHFOUsYRSRlRpR6K04,2832
144
+ edsl/jobs/remote_inference.py,sha256=J9lLFy7JZR4SkXfzBreT4qhPFeuQip_Qvo03Z9a0upg,14630
139
145
  edsl/jobs/results_exceptions_handler.py,sha256=VCtnd60xwdFznzGhtXPbxLmyVf3kIjR2419LUJdFjEQ,3053
140
146
  edsl/key_management/__init__.py,sha256=JiOJ71Ly9aw-tVYbWZu-qRjsW4QETYMQ9IJjsKgW1DQ,1274
141
147
  edsl/key_management/exceptions.py,sha256=dDtoDh1UL52BUBrAlCIc_McgtZCAQkUx6onoSz26qeM,2158
142
148
  edsl/key_management/key_lookup.py,sha256=HfIntc_i_WWUDoMOLwAHHbNlwC-0HivOyf_djeKiPlo,6080
143
- edsl/key_management/key_lookup_builder.py,sha256=UWR01sRAhK1QihVlN4McqInYpZg-nLMI29Qb3k6Qtvs,14800
149
+ edsl/key_management/key_lookup_builder.py,sha256=AlQxXbUYwyJc-3JjLddXBOBPVsYJ-B2grZRAZSIT7P4,14974
144
150
  edsl/key_management/key_lookup_collection.py,sha256=b1STYU4FIqgCtCf90bRZh6IXf8kcoTC8ad8RSHPmw-w,3471
145
151
  edsl/key_management/models.py,sha256=z9TimNMnz47mnITM5SlJy2m2sk1aKKtt0ybV89rsaiY,6703
146
152
  edsl/language_models/__init__.py,sha256=WtefJs6XOCn5RSz22PgoAi3eTEr1NzGtnnBpDIie2mg,240
147
153
  edsl/language_models/compute_cost.py,sha256=noWk0osCANksfKSh0sXFkPrcQegtSV8-jCRBjz_52uQ,2570
148
154
  edsl/language_models/exceptions.py,sha256=P9dMA8XfK_qcuXNJZ-Xsb_Ny-12Ldu3fPC133RB40Ek,13728
149
- edsl/language_models/language_model.py,sha256=oYxJtE7lBR-1uPnby5-zQc5je0-3OLU0fw3QbQcsbTI,40279
150
- edsl/language_models/model.py,sha256=UhBFV7eSgUBub0hR7vpmnerXvLXTX-4Xda2tA_eNJbU,11616
155
+ edsl/language_models/language_model.py,sha256=9ZKmt_v0cPAUkonNegrlh2h-1ixtnjonGZCcsFpmEz0,44630
156
+ edsl/language_models/model.py,sha256=oYZsfgvko_EH4EWT9XZPEgLcs9KA36SGEAKZwYRFjv8,12013
151
157
  edsl/language_models/model_list.py,sha256=Eb62xQdrlayqWYyJVgYxheMiNi14e1U9b_12qYzy1ws,4522
152
- edsl/language_models/price_manager.py,sha256=vLqMmrFecdW6aH4csFoM8w_MtRmMGCmi8pb79oS5_EY,5747
158
+ edsl/language_models/price_manager.py,sha256=GXNjD5NjutD44vZ2FRdQ7ayJWiuxkisETlX7UNGfpIk,9505
153
159
  edsl/language_models/raw_response_handler.py,sha256=i2Ye1WzjYq_2YJ1EKX946dx9m331GilwqC5qymGJlEI,4003
154
- edsl/language_models/registry.py,sha256=HY1fEHKXz92AQF8fIMfkvtA8p-_o9mWwr9rt2VDORT0,7172
160
+ edsl/language_models/registry.py,sha256=io_Cp-7PtLpPuvZs_j8XaMxJiv-zSplbAQdrzPp2pzg,7308
155
161
  edsl/language_models/repair.py,sha256=ljm0xc9e1tMdyKc9b-v7ikpYRBh639xJ11SkDzI2vZE,5245
156
162
  edsl/language_models/unused/fake_openai_call.py,sha256=dxbL5e4NLF-eTk9IduPyGwLiVCX_-eGCJDaLYPlQTqc,364
157
- edsl/language_models/unused/fake_openai_service.py,sha256=p0slW9cTdhuCjym64-uOcH_eHu4tzq5CHPPjvY8C2Ok,1691
158
163
  edsl/language_models/utilities.py,sha256=WHhSVzBw_ujm226sfxi38uCiAMJn-PC4NarQP7bqUYU,2284
159
164
  edsl/load_plugins.py,sha256=rJJiVHguGoeri4ZT6E3AKftRjibnw-o6JMA9R6Qv3Ng,2480
160
165
  edsl/logger.py,sha256=vnik_w_gHPxdRgF4ctgkuhjBeFwUkDt0c0uVUwWKfy4,4291
161
166
  edsl/notebooks/__init__.py,sha256=5uN54Xgjv4J0f_wdtdLoRnSzSUkHpSNTDtjLE2_jpZg,612
162
167
  edsl/notebooks/exceptions.py,sha256=1GSOUHg8PQj2diwAYDt70-rIOPUDra3Oi5UziTymnrE,2537
163
- edsl/notebooks/notebook.py,sha256=c_68LJibk1_za12AMQyO6ds_ExiAuqlUTORvbhsLOWE,8339
168
+ edsl/notebooks/notebook.py,sha256=IaCE9D3KmeqZ-rJky1x4L-N6b0GAsIo7J129FAw-S6A,11213
164
169
  edsl/notebooks/notebook_to_latex.py,sha256=kPcWMIWGVMxw5dSOhrua2t4nYvhwxBif_4RNP409OBM,4468
165
170
  edsl/plugins/__init__.py,sha256=Q7t09EbVrBbofD3B5mfstITCVPSquuXeZC202Gbsnew,1567
166
171
  edsl/plugins/built_in/export_example.py,sha256=qUSq2ppYuMfRTX-gn9I9FBKpejMJ1XmDnnJdIkvoZt8,1522
@@ -178,13 +183,14 @@ edsl/prompts/prompt.py,sha256=eHb7zWhkO7J5PwnZITaS4r1lbIWLBiJ8s3Z5aRyUC8M,14201
178
183
  edsl/questions/ExceptionExplainer.py,sha256=BgM80FRPJjS_TrY6XaVmlT666MzY9DEagviGQj9-WEQ,2868
179
184
  edsl/questions/HTMLQuestion.py,sha256=lx3Sysm6fMZmFc9hifnkGslt7ZBpDEvziM9-IJFMJLU,3238
180
185
  edsl/questions/Quick.py,sha256=HRLT2Lmhd1Gj4ggkrpCMYhzeWsRwlQaigu2EzdiXb5Q,1717
181
- edsl/questions/__init__.py,sha256=qqzjRjeODbZfS24Fli23sz7hGBb0K0aqVvCvPPbwXDM,5698
186
+ edsl/questions/VALIDATION_README.md,sha256=B1gUw1dMbjKDXtSNIng0ipCgKPmFVNWOn4ucUXc46-Y,4003
187
+ edsl/questions/__init__.py,sha256=vU9OtGSSAXkFw6YLlsfqf64P0kQPvt3m4DrsTUNinSU,6594
182
188
  edsl/questions/answer_validator_mixin.py,sha256=hdMULAfrSw9biT81f6jD-vCBMhBE79j7ouX0-He3yq8,14810
183
189
  edsl/questions/compose_questions.py,sha256=8s0UUbY1Kt7x0SPmri5oPrwrJMmkjI11Fp-jKPFP2oY,3409
184
190
  edsl/questions/data_structures.py,sha256=PbIML8388sHogUHGamz21DXKEpfU8zwyiGflc1y0cHE,432
185
191
  edsl/questions/decorators.py,sha256=ZijaRYUntAcg0JEztCiOEpcDvvVie___85Zx5ogBQXY,596
186
192
  edsl/questions/descriptors.py,sha256=Q1vQQ7DjUZtj1w7DjGMXzDdh8jgZu-eMPYOpWUYYyHY,16556
187
- edsl/questions/exceptions.py,sha256=tduRj_bBeGlRza7PfkQclC17Z5HUniED4oveLTfyR6o,13401
193
+ edsl/questions/exceptions.py,sha256=7y0T7GL-jASOUgt1qDMNUTyj4LVh5BkKW3TkRQnH1-8,14266
188
194
  edsl/questions/loop_processor.py,sha256=gwq995z7Whmzhps2h16f6J_BIqc5ddyvnZQFW_qC62g,6632
189
195
  edsl/questions/prompt_templates/question_budget.jinja,sha256=-ekZYCa_KRc-xLcpf3j-YmXV0WSyIK_laOp2x3li-tA,737
190
196
  edsl/questions/prompt_templates/question_checkbox.jinja,sha256=V-Dn2VJhfXyIILWIhMviTfQ5WuXh1YZerwicaA6Okzc,1136
@@ -199,7 +205,7 @@ edsl/questions/question_base_gen_mixin.py,sha256=Zb1nd0O6NR1c1rf6ik-Im7WPXAiIQrH
199
205
  edsl/questions/question_base_prompts_mixin.py,sha256=YWWAsI-_fzm8UTDbryfnA0g-1ufiGa1QxeZMb6r0T8A,11916
200
206
  edsl/questions/question_budget.py,sha256=C7TmJVk9XT_1Ado2S_JbLOGr4OtRONeR9mp3BoPbif4,24541
201
207
  edsl/questions/question_check_box.py,sha256=PNxCae2gAbuSqApGMWOdA2zZ2uhZFv_0O8lm6T8nvhg,33613
202
- edsl/questions/question_dict.py,sha256=OcKGuA3KpyXn7UjZbC41wIhiIIGxSJySdfoxOtU3Prc,20793
208
+ edsl/questions/question_dict.py,sha256=ooUun3PdvtT_e7C0-KnBz2z_91DXbKrzaL8X9CLNXe0,29947
203
209
  edsl/questions/question_extract.py,sha256=6x5LOqwDko_-DnhJAtZBRAju11JIa4PxTjU-5lg1rE0,20227
204
210
  edsl/questions/question_free_text.py,sha256=Oaw7C5BCclCiaWJlWHQJFEPppKxT7zWBFyIbF03LJh0,12879
205
211
  edsl/questions/question_functional.py,sha256=iwFlJmXBoFDu5D4tZ4Ci_yhfQo8_tB9C3W5I2p7KipA,9524
@@ -208,9 +214,10 @@ edsl/questions/question_linear_scale.py,sha256=OSGV6vwoAgDKoZhudqKiUPpJY8iMpHWNk
208
214
  edsl/questions/question_list.py,sha256=07Imgbji6RnNnh_UnhdOFGejon72StGP9ntXkV977oo,17849
209
215
  edsl/questions/question_matrix.py,sha256=Okg3sRboG4C1ArTSgUXUWlJJzWqsUimgB1lYtI9Hq8o,37397
210
216
  edsl/questions/question_multiple_choice.py,sha256=uTWZ0FGE8czIxmiZ_6mvc8KR5efpatZo_egid1WrHgc,23679
217
+ edsl/questions/question_multiple_choice_with_other.py,sha256=J0_3V5SfetQzqqVMgTIZ5TUwiY4X-bMCogSqquG0tzQ,23624
211
218
  edsl/questions/question_numerical.py,sha256=2b41BzrjcwnrVw98pDWjEQIw7Ge75chlgbbS2Jr25Wg,17549
212
219
  edsl/questions/question_rank.py,sha256=6oihp85lujt0EAoc7ZxZZf-3p8m-hqGBqSbJCRDUarM,23195
213
- edsl/questions/question_registry.py,sha256=vGaJtXUHaT2YMP1saulRE_YvfUZzyXFtsI1ssKbCI_g,6191
220
+ edsl/questions/question_registry.py,sha256=oEG29JjO9gji8qZz_Eqr1Oi3XAOTPhWudtWWDIfPvl0,6324
214
221
  edsl/questions/question_top_k.py,sha256=zAscGTBQisYX2jV9l3MCLz1PjziMqBlz81gybc-dot4,3233
215
222
  edsl/questions/question_yes_no.py,sha256=nF0RowcQucROyagcaCUi-yOveS8jfoiyOAlgjOfVnc8,2689
216
223
  edsl/questions/register_questions_meta.py,sha256=Ykf0zdVaOolI3YOVdEuVwCd3JByiggV008nBfgnBMfI,2697
@@ -250,6 +257,9 @@ edsl/questions/templates/multiple_choice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
250
257
  edsl/questions/templates/multiple_choice/answering_instructions.jinja,sha256=eScbqZtrNDOX4IlZzP0HMA7Cj-x-fT9UpyQKrPgiif4,330
251
258
  edsl/questions/templates/multiple_choice/html.jinja,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
259
  edsl/questions/templates/multiple_choice/question_presentation.jinja,sha256=hoEVj4GQD3EYnR2AStXkMFOJeqISNoEVzBd8-cx2yWg,273
260
+ edsl/questions/templates/multiple_choice_with_other/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
261
+ edsl/questions/templates/multiple_choice_with_other/answering_instructions.jinja,sha256=dU9fwbDeTIXpdyCwsSwsqYN7y5xzqQIYeiMxg6D5UbA,451
262
+ edsl/questions/templates/multiple_choice_with_other/question_presentation.jinja,sha256=OJ75kbxDNKdXK3zmcux9BvodRuW5t9MUUKjfazDmYus,441
253
263
  edsl/questions/templates/numerical/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
264
  edsl/questions/templates/numerical/answering_instructions.jinja,sha256=70CnuIbdRKGiYJk7316-FFloRh3Oeg_RvUu4tthNKqs,323
255
265
  edsl/questions/templates/numerical/question_presentation.jinja,sha256=8lMUWtEPHD4XOAyVEfCmWSwRFrdUa3lo8sxzogDyzWE,183
@@ -262,22 +272,26 @@ edsl/questions/templates/top_k/question_presentation.jinja,sha256=2u8XIkFPWzOuhb
262
272
  edsl/questions/templates/yes_no/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
263
273
  edsl/questions/templates/yes_no/answering_instructions.jinja,sha256=UAcssfcYeW8zytmPOVJOVQEdwdvlRspE8WnatYvreJQ,172
264
274
  edsl/questions/templates/yes_no/question_presentation.jinja,sha256=hoEVj4GQD3EYnR2AStXkMFOJeqISNoEVzBd8-cx2yWg,273
275
+ edsl/questions/validation_analysis.py,sha256=dq3yKLGZ708em5xI7DN36vb1Mq_N7KzpvMLncx0qC_M,6464
276
+ edsl/questions/validation_cli.py,sha256=6qp6dSpyjQQswKEEGsASzybrhf9YwxHFcQvFKrQA41M,3881
277
+ edsl/questions/validation_html_report.py,sha256=vFSWZGp5TAmRNwevV5_JzWoWmcGpGvuL6pf0yLRTfOU,13286
278
+ edsl/questions/validation_logger.py,sha256=ru0y2uM3t9Hln2oaq-n-9d4zTKXQIQWiKincGKoHdl4,4357
265
279
  edsl/results/__init__.py,sha256=RKbHY0g6s_k42VcdmTOZ2yB_nltiJnnbeQAkUY5WD9o,129
266
280
  edsl/results/exceptions.py,sha256=u-TQsazt_qj-G4eJKBnj0UtpnIiw6A2GcCLJ2wTYE_g,6536
267
281
  edsl/results/report.py,sha256=oHjMY981Gn8estqvoTk5SPiuEOIM0IR_QPBrRLdk5pM,7481
268
- edsl/results/result.py,sha256=xUQ-rq2PR9jB3JZfa9nWd34vHsjhy3tozlSTSyoUG_s,26721
269
- edsl/results/results.py,sha256=Zv5UDwgRirTZszmW_mtknscOiVyAU9BkNEdH9h1p7xc,64731
282
+ edsl/results/result.py,sha256=5cT7ikHDoNASGINRLDRCpMokusz0Plx5iq7LJ9pgK5I,29723
283
+ edsl/results/results.py,sha256=7vC_6MKCPcIPO9GxnT9POJElNF-r7ywEnVWuWiSI6L0,84727
270
284
  edsl/results/results_selector.py,sha256=4_XMS2Fb-3rcXEPUYaBRw52r1i66jttjttqNFe6PRc4,18050
271
285
  edsl/scenarios/DocxScenario.py,sha256=ul3nkX826m_T6LFptswqtnH5czP_yxMlLWgbTmFIZI4,482
272
286
  edsl/scenarios/PdfExtractor.py,sha256=6nPZ6v9x2RrU42EkqlEcW3MS-WIQpGfwg4--6WvEC8I,1972
273
287
  edsl/scenarios/__init__.py,sha256=cTAxtcWV4sWp7h1hy4G3tgh0WYsjao69w2G15S-YpDQ,1282
274
- edsl/scenarios/construct_download_link.py,sha256=WoM5HZoLe1cxW3dH6ZHAmA9BfenlVtG36NP7RyPy9oM,5131
275
- edsl/scenarios/directory_scanner.py,sha256=gnDXU1jKSjSE3LXEhE7ilfJUL_sxK2HHmsA2LcudwVg,11680
288
+ edsl/scenarios/construct_download_link.py,sha256=T-WWH0Y5lbCEmx2A80i9KdQoOqBbxtMwgzZ8CLt0_M0,5711
289
+ edsl/scenarios/directory_scanner.py,sha256=xv-3HHRPsyGa8m6mHpqLjK-UBC-nhG9gz3VC5gCtSpo,10331
276
290
  edsl/scenarios/document_chunker.py,sha256=EpB0V0oxLzpKntl00Qa3VZNPS7sg9aXdYyqKxhFFzTM,7680
277
291
  edsl/scenarios/exceptions.py,sha256=FeORBm90UthKHDp7cE8I7KJgyA3-pFKNpoivZRr8ifc,10636
278
- edsl/scenarios/file_methods.py,sha256=cB_IPVTGz4_yJiRMTdNTvpW4l43lrTbyJOV3Pnm6UPs,2631
279
- edsl/scenarios/file_store.py,sha256=slqSIENW6SP1dhnXTviq4umlvGHeYsDB3SM24t0ll_I,28033
280
- edsl/scenarios/handlers/__init__.py,sha256=9r1fDjUviGXso9h4d05wG9RECfqzfps55CQgb-ojCBo,848
292
+ edsl/scenarios/file_methods.py,sha256=LkN7mZsadRaiNhvKPP_jY7OhUMEsfhEEFY-hpnwdplM,2794
293
+ edsl/scenarios/file_store.py,sha256=tUDYeiCuV_C6XBYiBTAYGmUz7INBJ3n4_5xky_Q7oQA,33159
294
+ edsl/scenarios/handlers/__init__.py,sha256=_-A6vXzQPKga7fDyteDt1QPA6lDwmgERJKG8SrdhYxQ,965
281
295
  edsl/scenarios/handlers/csv_file_store.py,sha256=kXOms0ph5JJj6jSbpfQ-SZjuT4vvSRhq5AGpv1L4TPQ,1369
282
296
  edsl/scenarios/handlers/docx_file_store.py,sha256=KSKAAUIWF2K5xr92nx7UGQ9djgtDX4ke-Eyik8QAdlQ,2155
283
297
  edsl/scenarios/handlers/html_file_store.py,sha256=f5xbdkSo-6kTaqmG7VRb3yp1lOHvKvuCu4LMlKUppDc,913
@@ -285,6 +299,7 @@ edsl/scenarios/handlers/jpeg_file_store.py,sha256=JuRLVq4NlorcXEgOqKjkpKrQwtyl5O
285
299
  edsl/scenarios/handlers/json_file_store.py,sha256=39pMAVo57VEhbNFkGx5DwTmo3tYAr72OhTQNkGaqi9Y,3669
286
300
  edsl/scenarios/handlers/latex_file_store.py,sha256=3ivQIL6aBNoLK3sYKwRnuf-z3PwtKZ5j9IXU1xtZuxk,92
287
301
  edsl/scenarios/handlers/md_file_store.py,sha256=LN7OxE2zRqjl8EC1S4dptvfmxSJ6bKOPaXBtaTyeaQk,1475
302
+ edsl/scenarios/handlers/mp4_file_store.py,sha256=VrNu8G4XxtlaGRRXw8OBEwdWiVHpQCy8PGCmTOjxLfs,3680
288
303
  edsl/scenarios/handlers/pdf_file_store.py,sha256=OG38q__vMqfmorwlWVnynmcWMgdnEvLzTxEI8nkzyhc,1804
289
304
  edsl/scenarios/handlers/png_file_store.py,sha256=shsk5hTFUGBWetvawKTUW4rNUpjPGSb9upVZWhu8Uj8,1131
290
305
  edsl/scenarios/handlers/pptx_file_store.py,sha256=XXGMAe9bry3LLW36XEQ-XSTfDQbZk5SKoFPQX2RWduo,2980
@@ -292,11 +307,17 @@ edsl/scenarios/handlers/py_file_store.py,sha256=evkqAX70vwv8ss2g7Nfy5BERH4taK_13
292
307
  edsl/scenarios/handlers/sql_file_store.py,sha256=wa_Qw1-bk-tHhtQrp1IAxSAROygEQ5Fx0RCBJuYU0Uk,9585
293
308
  edsl/scenarios/handlers/sqlite_file_store.py,sha256=rwsfxD5G_XNEa-aRCx6A83lW0i2OiS51EzYsJeTE7ps,4936
294
309
  edsl/scenarios/handlers/txt_file_store.py,sha256=oGMqm2X_dWTt0W2e2zDung2i_A_z2mMmm4rrQImnVtU,980
295
- edsl/scenarios/scenario.py,sha256=SVQpBNdo2dAx5av6xfOCXbriflgK--WQvrj2GnpKFj8,37705
310
+ edsl/scenarios/handlers/webm_file_store.py,sha256=UG3sPwsxbZAjM1H9rbpdkvXMrS3iRbaaN-4VNGh3JX8,3659
311
+ edsl/scenarios/scenario.py,sha256=NAm-VCqM8x0OC6idOEHupzrqDoY7nr1E3448Q65ECaA,37384
296
312
  edsl/scenarios/scenario_join.py,sha256=1r_czZctN7JKbw38bQolKdz0kBaMqhWzo8IsxzHK1TY,5409
297
- edsl/scenarios/scenario_list.py,sha256=Nr_ToVBJACl7CmrRn1pK0mnKRBrDulSn-eyL1GEnxL8,86254
313
+ edsl/scenarios/scenario_list.py,sha256=XWtro8XODqA7QmWNcDb6IE-4n2dhMEt_MiOREpD-fDE,86817
314
+ edsl/scenarios/scenario_list_gc_test.py,sha256=VaZBg_GjfSaM92Gj3eiSt3aQ_rECDfD339ZCTqryfdc,4676
315
+ edsl/scenarios/scenario_list_memory_test.py,sha256=l_PeTJkh0MYQoRLIiFOI8hmzEyjf86_PG7UvU-2-l_o,7138
298
316
  edsl/scenarios/scenario_list_pdf_tools.py,sha256=sehQro5PzJ7Y4Ck9VJ8HTxKN8HSbk3aDipVYuxaJbdI,7686
299
- edsl/scenarios/scenario_selector.py,sha256=nG4zaF1uTJAdAizL7u4N94IUv9YKMSoOZyTKWYcTr2c,5952
317
+ edsl/scenarios/scenario_list_source_refactor.md,sha256=LFbkxOgc7eWtsX1zQlfYwqWW4pLJNTTXPP7zsyB3iQY,1554
318
+ edsl/scenarios/scenario_selector.py,sha256=7Hm4DitY7X6tKTAofhMMHIFkZf6qXFSminL2wBrUJ2w,6037
319
+ edsl/scenarios/scenario_source.py,sha256=1D_h3ejCGoVw6VrX3D2jFReV21L9AYxPsJ_xafnqgkM,73680
320
+ edsl/scenarios/tests/test_scenario_list_sources.py,sha256=2JBxBn-l_X22WPTKxMTlU10swkfN1DF6c_2-BONEy_E,2135
300
321
  edsl/surveys/__init__.py,sha256=04hdYqBBdb9jtZVkZffbFszr0yzXVPPFiI-XhgZRLu0,327
301
322
  edsl/surveys/base.py,sha256=XJHGEbbsH6hlYYkmI4isVLD8guLz8BdhR-eQRL78mc4,1115
302
323
  edsl/surveys/dag/__init__.py,sha256=DJw2-BlnSASU4qavgfOvAtDVhhdMmoXaeB5xC8qc-Rg,102
@@ -313,16 +334,16 @@ edsl/surveys/rules/__init__.py,sha256=yXrL1uzhv1PdndhI4ArR5-QyMy18Q1Unv3AXpjswHj
313
334
  edsl/surveys/rules/rule.py,sha256=S9XnZNSSHMK8E2HZ4w0imJjCW8RpoD3DZ1p1vSKDp40,15130
314
335
  edsl/surveys/rules/rule_collection.py,sha256=KK3xyklLYyQL5ubFFX_UWXUFM0rLcZgv8L2ofZBBjYo,14140
315
336
  edsl/surveys/rules/rule_manager.py,sha256=SD3wNFlEzmUBzpJsecrup-BugKU2dF5E4XWYyKd-EXg,6332
316
- edsl/surveys/survey.py,sha256=_BBxt98wPJrKEwzDaVacYqYYw7oDva5IosiD736hcP8,71717
337
+ edsl/surveys/survey.py,sha256=Q6fdyhwI64WOOnPHY56sXE7VpXibqwOuUmXUxbyo_g8,72482
317
338
  edsl/surveys/survey_css.py,sha256=-WetQGjvGkp8W4jq94XCHewvzbOLBKPCpsxIjRi2hG8,8789
318
339
  edsl/surveys/survey_export.py,sha256=rmlRdLW_KYuzkPxM65NU0DZlihH-67tUoCBc7I-7VxQ,8275
319
340
  edsl/surveys/survey_flow_visualization.py,sha256=aEmmwYeaa2YaTILEwsRANPfmNLut_oCmUd9iHPBtXwA,9550
320
341
  edsl/surveys/survey_simulator.py,sha256=JhoI9kdVAP7p6225K8ELe7WxcZpnIIJw_bZBTAgpKuA,2868
321
- edsl/tasks/__init__.py,sha256=9lbeFFRviCGMngU2ItXWERM_X5EHxvrxzsq8YsJ0cJg,1876
342
+ edsl/tasks/__init__.py,sha256=24Uw8dEDLoHfyJgNgjHOcJ_dKjjZZz68FH0PUC7M0bE,2000
322
343
  edsl/tasks/exceptions.py,sha256=vi-ns7T8UrdOQD9PBSO-8hYlXgoperykX5c2hrYaNg4,2022
323
344
  edsl/tasks/question_task_creator.py,sha256=ZSht6I3k5JjQaARufj1hdJbvWltwUzx40ikvmAjL0FA,12110
324
345
  edsl/tasks/task_creators.py,sha256=u-CxzB0Qv90PDkfi0bQV3EAT89co9fXIal5JOUPcKls,5616
325
- edsl/tasks/task_history.py,sha256=A51DaOMqDiI0Qw4E-ATT61kaPrv2FEUY-Ulzf8hptR4,21527
346
+ edsl/tasks/task_history.py,sha256=1Mn4CmpWktsI1R0J1nynEfDdTk7dDufCIJEZCN39xQ0,28538
326
347
  edsl/tasks/task_status_enum.py,sha256=cQSJMcswLGdknO7tvNZBZV05T_TZV-MEBY3DxyLzTo0,9032
327
348
  edsl/tasks/task_status_log.py,sha256=dbeZ5LUCJzWzBbMEIRUZKP1hjANJy7enyTiEU7hwS8w,3165
328
349
  edsl/templates/error_reporting/base.html,sha256=BsPp87_XfLJZA4V0oPF8ulmTFyPHgB3KyPEJkgSxsmQ,1299
@@ -337,29 +358,32 @@ edsl/templates/error_reporting/performance_plot.html,sha256=VjCW-ONEtUqyOCCt3SZG
337
358
  edsl/templates/error_reporting/report.css,sha256=qukm5A00Clsp9dynNz_bqTtWnhqj1JbQxx7bqmvMbVE,4522
338
359
  edsl/templates/error_reporting/report.html,sha256=CWygdoBM-QXNI8HtqaQMfzspMSn4lUVRTXf6NA9ggqo,4523
339
360
  edsl/templates/error_reporting/report.js,sha256=udGv2w5lPXKZuJzvr0SNBjs4LDgKoe2E8sKH7mXslzA,3888
361
+ edsl/tests/scenarios/test_ScenarioSource.py,sha256=DzrqRFyN8UGs1sQVYevYU9sRJTRQGJ-LGtaYg9tM5xc,2095
362
+ edsl/tests/scenarios/test_scenario_list_sources.py,sha256=DzrqRFyN8UGs1sQVYevYU9sRJTRQGJ-LGtaYg9tM5xc,2095
340
363
  edsl/tokens/__init__.py,sha256=v-osxbx8LN3pV5Ncv11RXUOw7tkXpy-aENb7i2D_p3k,986
341
364
  edsl/tokens/exceptions.py,sha256=hBAZw9MxR-3vjmerCiQF6fDA21C8BterRS1pvVbSL3Y,984
342
365
  edsl/tokens/interview_token_usage.py,sha256=AgPL7Yozxfy8cJOk8KaTxxCsoH94306_2HckuEOXWZg,1947
343
366
  edsl/tokens/token_usage.py,sha256=cKf5gE8XBLbMGxka7XYlVKPsesbSdSBGBklX-0R3AWM,1385
344
367
  edsl/utilities/PrettyList.py,sha256=BW1nlqNzk7XJjTopSJHSj4uC35A6GnaEeg3LdpO8JfE,2041
345
368
  edsl/utilities/SystemInfo.py,sha256=w0Gi9KvWK6JSNqs457GE9yGg39rMlUv3kyXhduY513w,955
346
- edsl/utilities/__init__.py,sha256=f7aoNf12qH1YzyjfoLKssm32v3UksxEI3-6vtUFhYiw,1242
369
+ edsl/utilities/__init__.py,sha256=bHZOBT6ihkyh2wODYC8g7Egb4q4z5ThMreSEwmRIvYQ,1280
347
370
  edsl/utilities/ast_utilities.py,sha256=49KDDu-PHYpzDN5cCaDf-ReQH-1dzjT5EG3WVSa8THk,868
348
- edsl/utilities/decorators.py,sha256=cVsNzo5R1CYBKexNyYGkKu3b17Y_jh71xOCbd58Y-Is,2318
371
+ edsl/utilities/decorators.py,sha256=oyD1htveyofzuaNbW0UdLXfFPm1NmycU7mPz-njVmec,6739
349
372
  edsl/utilities/gcp_bucket/__init__.py,sha256=EDChQBc3k_8H8C0JPtxgLlqu87fm-kzLw3oBCNjcj3A,65
350
373
  edsl/utilities/gcp_bucket/cloud_storage.py,sha256=0PLbS49wkO2tXoyvOehf0odXy14_QfTEYlxAX01Qu3A,3753
351
374
  edsl/utilities/is_notebook.py,sha256=UAT8LXl7oh2qvUnOWQ5QvO1wDno385a8hHMuPZuYGT8,713
352
375
  edsl/utilities/is_valid_variable_name.py,sha256=k_CEkw2rDjNykx1wBTLYkjzkTZI-3fK9xJlTQggX5nk,332
353
376
  edsl/utilities/markdown_to_docx.py,sha256=_z5Q0gqzW11mpjyDgH9Zsm8lo9frAGifv3KN9fobqxo,4105
354
377
  edsl/utilities/markdown_to_pdf.py,sha256=ATYrmGMzAw5Xblh8dB7NhBeEHvxhlLotJx3JJ0b0v-s,3770
378
+ edsl/utilities/memory_debugger.py,sha256=al6haIBpQ4H8QaPrqkIxhAhf4Q6x6YAk0xSIZbRB96E,41272
355
379
  edsl/utilities/naming_utilities.py,sha256=ZIxEe8nX0ZCpcZ14QjnnxBxQ0UBSiNZp6RqC7-gvUCw,4966
356
380
  edsl/utilities/remove_edsl_version.py,sha256=3n2RoXvZ4pH3k-_lc7B-vkeUyHXHX6vKHQStRn5SFpQ,762
357
381
  edsl/utilities/repair_functions.py,sha256=EXkXsqnmgPqj9b3dff1cZnJyaZw-qEvGENXCRHeO-ys,881
358
382
  edsl/utilities/restricted_python.py,sha256=248N2p5EWHDSpcK1G-q7DUoJeWy4sB6aO-RV0-5O7uY,2038
359
383
  edsl/utilities/template_loader.py,sha256=SCAcnTnxNQ67MNSkmfz7F-S_u2peyGn2j1oRIqi1wfg,870
360
384
  edsl/utilities/utilities.py,sha256=irHheAGOnl_6RwI--Hi9StVzvsHcWCqB48PWsWJQYOw,12045
361
- edsl-0.1.54.dist-info/LICENSE,sha256=_qszBDs8KHShVYcYzdMz3HNMtH-fKN_p5zjoVAVumFc,1111
362
- edsl-0.1.54.dist-info/METADATA,sha256=NGU-XmzH8XskOALpmyMCfowQaFzeGwHkdvBskv1BBns,12671
363
- edsl-0.1.54.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
364
- edsl-0.1.54.dist-info/entry_points.txt,sha256=JnG7xqMtHaQu9BU-yPATxdyCeA48XJpuclnWCqMfIMU,38
365
- edsl-0.1.54.dist-info/RECORD,,
385
+ edsl-0.1.56.dist-info/LICENSE,sha256=_qszBDs8KHShVYcYzdMz3HNMtH-fKN_p5zjoVAVumFc,1111
386
+ edsl-0.1.56.dist-info/METADATA,sha256=9pPRI9zdy9a7TGVJmANKNXiiEFuyPtUPMxMTYYLEd4Y,12039
387
+ edsl-0.1.56.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
388
+ edsl-0.1.56.dist-info/entry_points.txt,sha256=JnG7xqMtHaQu9BU-yPATxdyCeA48XJpuclnWCqMfIMU,38
389
+ edsl-0.1.56.dist-info/RECORD,,