edsl 0.1.54__py3-none-any.whl → 0.1.55__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 +8 -1
- edsl/__init__original.py +134 -0
- edsl/__version__.py +1 -1
- edsl/agents/agent.py +29 -0
- edsl/agents/agent_list.py +36 -1
- edsl/base/base_class.py +281 -151
- edsl/buckets/__init__.py +8 -3
- edsl/buckets/bucket_collection.py +9 -3
- edsl/buckets/model_buckets.py +4 -2
- edsl/buckets/token_bucket.py +2 -2
- edsl/buckets/token_bucket_client.py +5 -3
- edsl/caching/cache.py +131 -62
- edsl/caching/cache_entry.py +70 -58
- edsl/caching/sql_dict.py +17 -0
- edsl/cli.py +99 -0
- edsl/config/config_class.py +16 -0
- edsl/conversation/__init__.py +31 -0
- edsl/coop/coop.py +276 -242
- edsl/coop/coop_jobs_objects.py +59 -0
- edsl/coop/coop_objects.py +29 -0
- edsl/coop/coop_regular_objects.py +26 -0
- edsl/coop/utils.py +24 -19
- edsl/dataset/dataset.py +338 -101
- edsl/db_list/sqlite_list.py +349 -0
- edsl/inference_services/__init__.py +40 -5
- edsl/inference_services/exceptions.py +11 -0
- edsl/inference_services/services/anthropic_service.py +5 -2
- edsl/inference_services/services/aws_bedrock.py +6 -2
- edsl/inference_services/services/azure_ai.py +6 -2
- edsl/inference_services/services/google_service.py +3 -2
- edsl/inference_services/services/mistral_ai_service.py +6 -2
- edsl/inference_services/services/open_ai_service.py +6 -2
- edsl/inference_services/services/perplexity_service.py +6 -2
- edsl/inference_services/services/test_service.py +94 -5
- edsl/interviews/answering_function.py +167 -59
- edsl/interviews/interview.py +124 -72
- edsl/interviews/interview_task_manager.py +10 -0
- edsl/invigilators/invigilators.py +9 -0
- edsl/jobs/async_interview_runner.py +146 -104
- edsl/jobs/data_structures.py +6 -4
- edsl/jobs/decorators.py +61 -0
- edsl/jobs/fetch_invigilator.py +61 -18
- edsl/jobs/html_table_job_logger.py +14 -2
- edsl/jobs/jobs.py +180 -104
- edsl/jobs/jobs_component_constructor.py +2 -2
- edsl/jobs/jobs_interview_constructor.py +2 -0
- edsl/jobs/jobs_remote_inference_logger.py +4 -0
- edsl/jobs/jobs_runner_status.py +30 -25
- edsl/jobs/progress_bar_manager.py +79 -0
- edsl/jobs/remote_inference.py +35 -1
- edsl/key_management/key_lookup_builder.py +6 -1
- edsl/language_models/language_model.py +86 -6
- edsl/language_models/model.py +10 -3
- edsl/language_models/price_manager.py +45 -75
- edsl/language_models/registry.py +5 -0
- edsl/notebooks/notebook.py +77 -10
- edsl/questions/VALIDATION_README.md +134 -0
- edsl/questions/__init__.py +24 -1
- edsl/questions/exceptions.py +21 -0
- edsl/questions/question_dict.py +201 -16
- edsl/questions/question_multiple_choice_with_other.py +624 -0
- edsl/questions/question_registry.py +2 -1
- edsl/questions/templates/multiple_choice_with_other/__init__.py +0 -0
- edsl/questions/templates/multiple_choice_with_other/answering_instructions.jinja +15 -0
- edsl/questions/templates/multiple_choice_with_other/question_presentation.jinja +17 -0
- edsl/questions/validation_analysis.py +185 -0
- edsl/questions/validation_cli.py +131 -0
- edsl/questions/validation_html_report.py +404 -0
- edsl/questions/validation_logger.py +136 -0
- edsl/results/result.py +63 -16
- edsl/results/results.py +702 -171
- edsl/scenarios/construct_download_link.py +16 -3
- edsl/scenarios/directory_scanner.py +226 -226
- edsl/scenarios/file_methods.py +5 -0
- edsl/scenarios/file_store.py +117 -6
- edsl/scenarios/handlers/__init__.py +5 -1
- edsl/scenarios/handlers/mp4_file_store.py +104 -0
- edsl/scenarios/handlers/webm_file_store.py +104 -0
- edsl/scenarios/scenario.py +120 -101
- edsl/scenarios/scenario_list.py +800 -727
- edsl/scenarios/scenario_list_gc_test.py +146 -0
- edsl/scenarios/scenario_list_memory_test.py +214 -0
- edsl/scenarios/scenario_list_source_refactor.md +35 -0
- edsl/scenarios/scenario_selector.py +5 -4
- edsl/scenarios/scenario_source.py +1990 -0
- edsl/scenarios/tests/test_scenario_list_sources.py +52 -0
- edsl/surveys/survey.py +22 -0
- edsl/tasks/__init__.py +4 -2
- edsl/tasks/task_history.py +198 -36
- edsl/tests/scenarios/test_ScenarioSource.py +51 -0
- edsl/tests/scenarios/test_scenario_list_sources.py +51 -0
- edsl/utilities/__init__.py +2 -1
- edsl/utilities/decorators.py +121 -0
- edsl/utilities/memory_debugger.py +1010 -0
- {edsl-0.1.54.dist-info → edsl-0.1.55.dist-info}/METADATA +51 -76
- {edsl-0.1.54.dist-info → edsl-0.1.55.dist-info}/RECORD +99 -75
- edsl/jobs/jobs_runner_asyncio.py +0 -281
- edsl/language_models/unused/fake_openai_service.py +0 -60
- {edsl-0.1.54.dist-info → edsl-0.1.55.dist-info}/LICENSE +0 -0
- {edsl-0.1.54.dist-info → edsl-0.1.55.dist-info}/WHEEL +0 -0
- {edsl-0.1.54.dist-info → edsl-0.1.55.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.
|
3
|
+
Version: 0.1.55
|
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
|
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/
|
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,52 +1,57 @@
|
|
1
|
-
edsl/__init__.py,sha256=
|
2
|
-
edsl/
|
1
|
+
edsl/__init__.py,sha256=EkpMsEKqKRbN9Qqcn_y8CjX8OjlWFyhxslLrt3SJY0Q,4827
|
2
|
+
edsl/__init__original.py,sha256=PzMzANf98PrSleSThXT4anNkeVqZMdw0tfFonzsoiGk,4446
|
3
|
+
edsl/__version__.py,sha256=mSfkicuxJWIsRzwvWTgXF6azCtmLwU9PYRQ4CHsYpxE,23
|
3
4
|
edsl/agents/__init__.py,sha256=AyhfXjygRHT1Pd9w16lcu5Bu0jnBmMPz86aKP1uRL3Y,93
|
4
|
-
edsl/agents/agent.py,sha256=
|
5
|
-
edsl/agents/agent_list.py,sha256
|
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=
|
10
|
+
edsl/base/base_class.py,sha256=bpuKCf6OOl71OlhrInDLC4b8LxFfDnuMVaaEaSp7ECY,48158
|
10
11
|
edsl/base/base_exception.py,sha256=gwk4mNoS3TBe6446NiQeSrUrjUqjlB3_fcDFgV90Dms,7644
|
11
12
|
edsl/base/data_transfer_models.py,sha256=XTff7CXcVFR5FDSrUE-PWtS8xtmjxYdS3gPuKVDuiU4,3234
|
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=
|
16
|
-
edsl/buckets/bucket_collection.py,sha256=
|
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=
|
19
|
-
edsl/buckets/token_bucket.py,sha256=
|
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=
|
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=
|
24
|
-
edsl/caching/cache_entry.py,sha256=
|
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=
|
30
|
-
edsl/cli.py,sha256=
|
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
|
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=
|
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=
|
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=
|
54
|
+
edsl/dataset/dataset.py,sha256=kfjfF4B-SlTeBL2FHDiLdwTZOm8RmWqTUOTQStNiOqk,39563
|
50
55
|
edsl/dataset/dataset_operations_mixin.py,sha256=y_EBa3TZUUJYsxQGjoB9pTONFKvHg3gNMkWz5NX551A,59221
|
51
56
|
edsl/dataset/dataset_tree.py,sha256=mKLQhwo-gxDyJCwCH3gj6Os0Jk2JqfWd_PvUyuWqM6s,14268
|
52
57
|
edsl/dataset/display/CSSParameterizer.py,sha256=vI3VTgTihJeCYGfmGp7fOhTitHZ17jrDGbq46Sa2rd8,3677
|
@@ -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=
|
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=
|
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=
|
80
|
-
edsl/inference_services/services/aws_bedrock.py,sha256=
|
81
|
-
edsl/inference_services/services/azure_ai.py,sha256=
|
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=
|
90
|
+
edsl/inference_services/services/google_service.py,sha256=xjfWDy8Pu-Qt2FaQ37FsHvkY7g6ikb7ejndVy5AWL6A,5410
|
85
91
|
edsl/inference_services/services/groq_service.py,sha256=eSxVbQXzrc6rtgVyMgDOsdG08n1m8YqPaB8gp_Ia3IE,484
|
86
|
-
edsl/inference_services/services/mistral_ai_service.py,sha256=
|
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=
|
89
|
-
edsl/inference_services/services/perplexity_service.py,sha256=
|
90
|
-
edsl/inference_services/services/test_service.py,sha256=
|
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=
|
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=
|
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=
|
115
|
+
edsl/interviews/interview_task_manager.py,sha256=tvW1feofR6tTDsPcd0V0x0jjw0Gp0qvvigkf-qeepT4,4029
|
110
116
|
edsl/interviews/request_token_estimator.py,sha256=n_C-alSYOFi27cBcIRhtBX-fvklDcvM2Kowte-EDnzM,4833
|
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=
|
121
|
+
edsl/invigilators/invigilators.py,sha256=GtcZhcz1pK9RKgzh-mMvkMDkEyWNfT550-mwZW8iPR8,22854
|
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=
|
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=
|
125
|
-
edsl/jobs/decorators.py,sha256=
|
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=
|
128
|
-
edsl/jobs/html_table_job_logger.py,sha256=
|
129
|
-
edsl/jobs/jobs.py,sha256=
|
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=
|
132
|
-
edsl/jobs/jobs_interview_constructor.py,sha256=
|
137
|
+
edsl/jobs/jobs_component_constructor.py,sha256=9956UURv3eo-cURNPd4EV8wAQsY-AlEtQRmBu1nCOH8,6982
|
138
|
+
edsl/jobs/jobs_interview_constructor.py,sha256=8nIhhwBQWH_aZ9ZWjvRgOL0y2y6juRTb3pVngQ9Cs8g,2017
|
133
139
|
edsl/jobs/jobs_pricing_estimation.py,sha256=rb4zr0d8DicLmHy2_0l1qVAdskCyBLrXeqtz5Qa60c8,15433
|
134
|
-
edsl/jobs/jobs_remote_inference_logger.py,sha256=
|
135
|
-
edsl/jobs/
|
136
|
-
edsl/jobs/jobs_runner_status.py,sha256=hIHHC_sWkK6clqQwnxz8YXAvwrEoL-VVtwWnHij3vfw,10446
|
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/
|
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=
|
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=
|
150
|
-
edsl/language_models/model.py,sha256=
|
155
|
+
edsl/language_models/language_model.py,sha256=Y-Tm96w56njcHF610bv3m2y8sYh71w1coOfCrEcXR94,43748
|
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=
|
158
|
+
edsl/language_models/price_manager.py,sha256=u1aDOzIjFWJJZSjE5i_NczuQ5Yul7hoArCeKaiSPMl4,4775
|
153
159
|
edsl/language_models/raw_response_handler.py,sha256=i2Ye1WzjYq_2YJ1EKX946dx9m331GilwqC5qymGJlEI,4003
|
154
|
-
edsl/language_models/registry.py,sha256=
|
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=
|
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/
|
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=
|
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=
|
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=
|
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=
|
269
|
-
edsl/results/results.py,sha256=
|
282
|
+
edsl/results/result.py,sha256=NtungVm6dvTH53tP_CEV6L6jXUU4wvtaAYDdMgNYWic,29071
|
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=
|
275
|
-
edsl/scenarios/directory_scanner.py,sha256=
|
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=
|
279
|
-
edsl/scenarios/file_store.py,sha256=
|
280
|
-
edsl/scenarios/handlers/__init__.py,sha256=
|
292
|
+
edsl/scenarios/file_methods.py,sha256=LkN7mZsadRaiNhvKPP_jY7OhUMEsfhEEFY-hpnwdplM,2794
|
293
|
+
edsl/scenarios/file_store.py,sha256=IxMLEu7RbA_8L4sy7VYrau5NGKIGzRpX8mElZoPgP3E,32583
|
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/
|
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=
|
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/
|
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=
|
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=
|
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=
|
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=
|
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=
|
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.
|
362
|
-
edsl-0.1.
|
363
|
-
edsl-0.1.
|
364
|
-
edsl-0.1.
|
365
|
-
edsl-0.1.
|
385
|
+
edsl-0.1.55.dist-info/LICENSE,sha256=_qszBDs8KHShVYcYzdMz3HNMtH-fKN_p5zjoVAVumFc,1111
|
386
|
+
edsl-0.1.55.dist-info/METADATA,sha256=7iVfsyA17JnUN-Hnx_e4WfFsDOGGmwwxZpvF3YpXE8g,12039
|
387
|
+
edsl-0.1.55.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
388
|
+
edsl-0.1.55.dist-info/entry_points.txt,sha256=JnG7xqMtHaQu9BU-yPATxdyCeA48XJpuclnWCqMfIMU,38
|
389
|
+
edsl-0.1.55.dist-info/RECORD,,
|