edsl 0.1.49__py3-none-any.whl → 0.1.50__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 (239) hide show
  1. edsl/__init__.py +124 -53
  2. edsl/__version__.py +1 -1
  3. edsl/agents/agent.py +21 -21
  4. edsl/agents/agent_list.py +2 -5
  5. edsl/agents/exceptions.py +119 -5
  6. edsl/base/__init__.py +10 -35
  7. edsl/base/base_class.py +71 -36
  8. edsl/base/base_exception.py +204 -0
  9. edsl/base/data_transfer_models.py +1 -1
  10. edsl/base/exceptions.py +94 -0
  11. edsl/buckets/__init__.py +15 -1
  12. edsl/buckets/bucket_collection.py +3 -4
  13. edsl/buckets/exceptions.py +75 -0
  14. edsl/buckets/model_buckets.py +1 -2
  15. edsl/buckets/token_bucket.py +11 -6
  16. edsl/buckets/token_bucket_api.py +1 -2
  17. edsl/buckets/token_bucket_client.py +9 -7
  18. edsl/caching/cache.py +7 -2
  19. edsl/caching/cache_entry.py +10 -9
  20. edsl/caching/exceptions.py +113 -7
  21. edsl/caching/remote_cache_sync.py +1 -2
  22. edsl/caching/sql_dict.py +17 -12
  23. edsl/cli.py +43 -0
  24. edsl/config/config_class.py +30 -6
  25. edsl/conversation/Conversation.py +3 -2
  26. edsl/conversation/exceptions.py +58 -0
  27. edsl/conversation/mug_negotiation.py +0 -2
  28. edsl/coop/__init__.py +20 -1
  29. edsl/coop/coop.py +120 -29
  30. edsl/coop/exceptions.py +188 -9
  31. edsl/coop/price_fetcher.py +3 -6
  32. edsl/coop/utils.py +4 -6
  33. edsl/dataset/__init__.py +5 -4
  34. edsl/dataset/dataset.py +53 -43
  35. edsl/dataset/dataset_operations_mixin.py +86 -72
  36. edsl/dataset/dataset_tree.py +9 -5
  37. edsl/dataset/display/table_display.py +0 -2
  38. edsl/dataset/display/table_renderers.py +0 -1
  39. edsl/dataset/exceptions.py +125 -0
  40. edsl/dataset/file_exports.py +18 -11
  41. edsl/dataset/r/ggplot.py +13 -6
  42. edsl/display/__init__.py +27 -0
  43. edsl/display/core.py +147 -0
  44. edsl/display/plugin.py +189 -0
  45. edsl/display/utils.py +52 -0
  46. edsl/inference_services/__init__.py +9 -1
  47. edsl/inference_services/available_model_cache_handler.py +1 -1
  48. edsl/inference_services/available_model_fetcher.py +4 -5
  49. edsl/inference_services/data_structures.py +9 -6
  50. edsl/inference_services/exceptions.py +132 -1
  51. edsl/inference_services/inference_service_abc.py +2 -2
  52. edsl/inference_services/inference_services_collection.py +2 -6
  53. edsl/inference_services/registry.py +4 -3
  54. edsl/inference_services/service_availability.py +2 -1
  55. edsl/inference_services/services/anthropic_service.py +4 -1
  56. edsl/inference_services/services/aws_bedrock.py +13 -12
  57. edsl/inference_services/services/azure_ai.py +12 -10
  58. edsl/inference_services/services/deep_infra_service.py +1 -4
  59. edsl/inference_services/services/deep_seek_service.py +1 -5
  60. edsl/inference_services/services/google_service.py +6 -2
  61. edsl/inference_services/services/groq_service.py +1 -1
  62. edsl/inference_services/services/mistral_ai_service.py +4 -2
  63. edsl/inference_services/services/ollama_service.py +1 -1
  64. edsl/inference_services/services/open_ai_service.py +7 -5
  65. edsl/inference_services/services/perplexity_service.py +6 -2
  66. edsl/inference_services/services/test_service.py +8 -7
  67. edsl/inference_services/services/together_ai_service.py +2 -3
  68. edsl/inference_services/services/xai_service.py +1 -1
  69. edsl/instructions/__init__.py +1 -1
  70. edsl/instructions/change_instruction.py +3 -2
  71. edsl/instructions/exceptions.py +61 -0
  72. edsl/instructions/instruction.py +5 -2
  73. edsl/instructions/instruction_collection.py +2 -1
  74. edsl/instructions/instruction_handler.py +4 -9
  75. edsl/interviews/ReportErrors.py +0 -3
  76. edsl/interviews/__init__.py +9 -2
  77. edsl/interviews/answering_function.py +11 -13
  78. edsl/interviews/exception_tracking.py +14 -7
  79. edsl/interviews/exceptions.py +79 -0
  80. edsl/interviews/interview.py +32 -29
  81. edsl/interviews/interview_status_dictionary.py +4 -2
  82. edsl/interviews/interview_status_log.py +2 -1
  83. edsl/interviews/interview_task_manager.py +3 -3
  84. edsl/interviews/request_token_estimator.py +3 -1
  85. edsl/interviews/statistics.py +2 -3
  86. edsl/invigilators/__init__.py +7 -1
  87. edsl/invigilators/exceptions.py +79 -0
  88. edsl/invigilators/invigilator_base.py +0 -1
  89. edsl/invigilators/invigilators.py +8 -12
  90. edsl/invigilators/prompt_constructor.py +1 -5
  91. edsl/invigilators/prompt_helpers.py +8 -4
  92. edsl/invigilators/question_instructions_prompt_builder.py +1 -1
  93. edsl/invigilators/question_option_processor.py +9 -5
  94. edsl/invigilators/question_template_replacements_builder.py +3 -2
  95. edsl/jobs/__init__.py +3 -3
  96. edsl/jobs/async_interview_runner.py +24 -22
  97. edsl/jobs/check_survey_scenario_compatibility.py +7 -6
  98. edsl/jobs/data_structures.py +7 -4
  99. edsl/jobs/exceptions.py +177 -8
  100. edsl/jobs/fetch_invigilator.py +1 -1
  101. edsl/jobs/jobs.py +72 -67
  102. edsl/jobs/jobs_checks.py +2 -3
  103. edsl/jobs/jobs_component_constructor.py +2 -2
  104. edsl/jobs/jobs_pricing_estimation.py +3 -2
  105. edsl/jobs/jobs_remote_inference_logger.py +5 -4
  106. edsl/jobs/jobs_runner_asyncio.py +1 -2
  107. edsl/jobs/jobs_runner_status.py +8 -9
  108. edsl/jobs/remote_inference.py +26 -23
  109. edsl/jobs/results_exceptions_handler.py +8 -5
  110. edsl/key_management/__init__.py +3 -1
  111. edsl/key_management/exceptions.py +62 -0
  112. edsl/key_management/key_lookup.py +1 -1
  113. edsl/key_management/key_lookup_builder.py +37 -14
  114. edsl/key_management/key_lookup_collection.py +2 -0
  115. edsl/language_models/__init__.py +1 -1
  116. edsl/language_models/exceptions.py +302 -14
  117. edsl/language_models/language_model.py +4 -7
  118. edsl/language_models/model.py +4 -4
  119. edsl/language_models/model_list.py +1 -1
  120. edsl/language_models/price_manager.py +1 -1
  121. edsl/language_models/raw_response_handler.py +14 -9
  122. edsl/language_models/registry.py +17 -21
  123. edsl/language_models/repair.py +0 -6
  124. edsl/language_models/unused/fake_openai_service.py +0 -1
  125. edsl/load_plugins.py +69 -0
  126. edsl/logger.py +146 -0
  127. edsl/notebooks/notebook.py +1 -1
  128. edsl/notebooks/notebook_to_latex.py +0 -1
  129. edsl/plugins/__init__.py +63 -0
  130. edsl/plugins/built_in/export_example.py +50 -0
  131. edsl/plugins/built_in/pig_latin.py +67 -0
  132. edsl/plugins/cli.py +372 -0
  133. edsl/plugins/cli_typer.py +283 -0
  134. edsl/plugins/exceptions.py +31 -0
  135. edsl/plugins/hookspec.py +51 -0
  136. edsl/plugins/plugin_host.py +128 -0
  137. edsl/plugins/plugin_manager.py +633 -0
  138. edsl/plugins/plugins_registry.py +168 -0
  139. edsl/prompts/__init__.py +2 -0
  140. edsl/prompts/exceptions.py +107 -5
  141. edsl/prompts/prompt.py +14 -6
  142. edsl/questions/HTMLQuestion.py +5 -11
  143. edsl/questions/Quick.py +0 -1
  144. edsl/questions/__init__.py +2 -0
  145. edsl/questions/answer_validator_mixin.py +318 -318
  146. edsl/questions/compose_questions.py +2 -2
  147. edsl/questions/descriptors.py +10 -49
  148. edsl/questions/exceptions.py +278 -22
  149. edsl/questions/loop_processor.py +7 -5
  150. edsl/questions/prompt_templates/question_list.jinja +3 -0
  151. edsl/questions/question_base.py +14 -16
  152. edsl/questions/question_base_gen_mixin.py +2 -2
  153. edsl/questions/question_base_prompts_mixin.py +9 -3
  154. edsl/questions/question_budget.py +9 -5
  155. edsl/questions/question_check_box.py +3 -5
  156. edsl/questions/question_dict.py +171 -194
  157. edsl/questions/question_extract.py +1 -1
  158. edsl/questions/question_free_text.py +4 -6
  159. edsl/questions/question_functional.py +4 -3
  160. edsl/questions/question_list.py +36 -9
  161. edsl/questions/question_matrix.py +95 -61
  162. edsl/questions/question_multiple_choice.py +6 -4
  163. edsl/questions/question_numerical.py +2 -4
  164. edsl/questions/question_registry.py +4 -2
  165. edsl/questions/register_questions_meta.py +0 -1
  166. edsl/questions/response_validator_abc.py +7 -13
  167. edsl/questions/templates/dict/answering_instructions.jinja +1 -0
  168. edsl/questions/templates/rank/question_presentation.jinja +1 -1
  169. edsl/results/__init__.py +1 -1
  170. edsl/results/exceptions.py +141 -7
  171. edsl/results/report.py +0 -1
  172. edsl/results/result.py +4 -5
  173. edsl/results/results.py +10 -51
  174. edsl/results/results_selector.py +8 -4
  175. edsl/scenarios/PdfExtractor.py +2 -2
  176. edsl/scenarios/construct_download_link.py +69 -35
  177. edsl/scenarios/directory_scanner.py +33 -14
  178. edsl/scenarios/document_chunker.py +1 -1
  179. edsl/scenarios/exceptions.py +238 -14
  180. edsl/scenarios/file_methods.py +1 -1
  181. edsl/scenarios/file_store.py +7 -3
  182. edsl/scenarios/handlers/__init__.py +17 -0
  183. edsl/scenarios/handlers/docx_file_store.py +0 -5
  184. edsl/scenarios/handlers/pdf_file_store.py +0 -1
  185. edsl/scenarios/handlers/pptx_file_store.py +0 -5
  186. edsl/scenarios/handlers/py_file_store.py +0 -1
  187. edsl/scenarios/handlers/sql_file_store.py +1 -4
  188. edsl/scenarios/handlers/sqlite_file_store.py +0 -1
  189. edsl/scenarios/handlers/txt_file_store.py +1 -1
  190. edsl/scenarios/scenario.py +0 -1
  191. edsl/scenarios/scenario_list.py +152 -18
  192. edsl/scenarios/scenario_list_pdf_tools.py +1 -0
  193. edsl/scenarios/scenario_selector.py +0 -1
  194. edsl/surveys/__init__.py +3 -4
  195. edsl/surveys/dag/__init__.py +4 -2
  196. edsl/surveys/descriptors.py +1 -1
  197. edsl/surveys/edit_survey.py +1 -0
  198. edsl/surveys/exceptions.py +165 -9
  199. edsl/surveys/memory/__init__.py +5 -3
  200. edsl/surveys/memory/memory_management.py +1 -0
  201. edsl/surveys/memory/memory_plan.py +6 -15
  202. edsl/surveys/rules/__init__.py +5 -3
  203. edsl/surveys/rules/rule.py +1 -2
  204. edsl/surveys/rules/rule_collection.py +1 -1
  205. edsl/surveys/survey.py +12 -24
  206. edsl/surveys/survey_export.py +6 -3
  207. edsl/surveys/survey_flow_visualization.py +10 -1
  208. edsl/tasks/__init__.py +2 -0
  209. edsl/tasks/question_task_creator.py +3 -3
  210. edsl/tasks/task_creators.py +1 -3
  211. edsl/tasks/task_history.py +5 -7
  212. edsl/tasks/task_status_log.py +1 -2
  213. edsl/tokens/__init__.py +3 -1
  214. edsl/tokens/token_usage.py +1 -1
  215. edsl/utilities/__init__.py +21 -1
  216. edsl/utilities/decorators.py +1 -2
  217. edsl/utilities/markdown_to_docx.py +2 -2
  218. edsl/utilities/markdown_to_pdf.py +1 -1
  219. edsl/utilities/repair_functions.py +0 -1
  220. edsl/utilities/restricted_python.py +0 -1
  221. edsl/utilities/template_loader.py +2 -3
  222. edsl/utilities/utilities.py +8 -29
  223. {edsl-0.1.49.dist-info → edsl-0.1.50.dist-info}/METADATA +32 -2
  224. edsl-0.1.50.dist-info/RECORD +363 -0
  225. edsl-0.1.50.dist-info/entry_points.txt +3 -0
  226. edsl/dataset/smart_objects.py +0 -96
  227. edsl/exceptions/BaseException.py +0 -21
  228. edsl/exceptions/__init__.py +0 -54
  229. edsl/exceptions/configuration.py +0 -16
  230. edsl/exceptions/general.py +0 -34
  231. edsl/study/ObjectEntry.py +0 -173
  232. edsl/study/ProofOfWork.py +0 -113
  233. edsl/study/SnapShot.py +0 -80
  234. edsl/study/Study.py +0 -520
  235. edsl/study/__init__.py +0 -6
  236. edsl/utilities/interface.py +0 -135
  237. edsl-0.1.49.dist-info/RECORD +0 -347
  238. {edsl-0.1.49.dist-info → edsl-0.1.50.dist-info}/LICENSE +0 -0
  239. {edsl-0.1.49.dist-info → edsl-0.1.50.dist-info}/WHEEL +0 -0
@@ -0,0 +1,363 @@
1
+ edsl/__init__.py,sha256=PzMzANf98PrSleSThXT4anNkeVqZMdw0tfFonzsoiGk,4446
2
+ edsl/__version__.py,sha256=GlCAyW7WOUPNmnX_3K1ur1QDZL8XW1tkxYm46z05bts,23
3
+ 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
6
+ edsl/agents/descriptors.py,sha256=TfFQWJqhqTWyH89DkNmK6qtH3xV2fUyW9FbI5KnZXv0,4592
7
+ edsl/agents/exceptions.py,sha256=7KMAtAHKqlkVkd_iVZC_mWXQnzDPV0V_n2iXaGAQgzc,5661
8
+ edsl/base/__init__.py,sha256=h119NxrAJOV92jnX7ussXNjKFXqzySVGOjMG3G7Zkzc,992
9
+ edsl/base/base_class.py,sha256=2OLxpJPyj0kZA7_pRp8qppN7lAXQn2SFvKn2eaA3WpU,45564
10
+ edsl/base/base_exception.py,sha256=mRG3pM36GGL1-oJjSjBaAkiQCyPfI9M3y0sO5RH6hDE,7629
11
+ edsl/base/data_transfer_models.py,sha256=XTff7CXcVFR5FDSrUE-PWtS8xtmjxYdS3gPuKVDuiU4,3234
12
+ edsl/base/enums.py,sha256=njo1lEsjB4Xf0loTerks8eWMTP0JResqzd5kZuclS-w,6447
13
+ edsl/base/exceptions.py,sha256=hEMu40lW1IsuarZiOJAL2sAUwuxsubxfR41J6BK5Ri8,3493
14
+ 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=VMMX5kYO5Uim6FpP5lJzO7yXbmvcHAk13G1bVYR1hv8,13192
17
+ edsl/buckets/exceptions.py,sha256=luSIBzB8jHZAsuytFW6KLy5ZrPhQZ4d4ovtr08HRp1Y,2498
18
+ edsl/buckets/model_buckets.py,sha256=T706pzOjAC2NU6h-gYPr1UW63TGEQwMBkKelydObyBk,8294
19
+ edsl/buckets/token_bucket.py,sha256=0aDXqLEesI-GoM3esVaSaMkYQleeEHAd7xaDKnSVLuY,20157
20
+ edsl/buckets/token_bucket_api.py,sha256=xgYglXCNATJJCqL_967mmGcgm7xqSNfCM4Mosho1nVE,6785
21
+ edsl/buckets/token_bucket_client.py,sha256=7rlwQh0PlVYPEWBdhDzOCRffG54giyPT5ydrINb5cBs,20027
22
+ edsl/caching/__init__.py,sha256=aKqxYVzk1FSEdyvknPq88xoofsVJsRCRrC--LTzbRGI,753
23
+ edsl/caching/cache.py,sha256=g47biTeWX6ksflWNSazgteQ1EgT-KfScbqF97Ruu3_8,30800
24
+ edsl/caching/cache_entry.py,sha256=Ocam03hl7L8Xb3cvgX2KjEb_pmyW2aGGa94n1B0MBC4,16237
25
+ edsl/caching/cache_handler.py,sha256=YXROqkybCAJ3-18JvRbG8Yrn8TGA-FuetXbJasaJ8ng,5148
26
+ edsl/caching/exceptions.py,sha256=gwYiNVq4T5TvYLPBIkVs2hEHNGEsceTk3bTxCNqhzJ0,4714
27
+ edsl/caching/orm.py,sha256=3SbXvE7e-01wkqxenPa0ZrkJzZwn2r4ekpc_sqLqAxU,964
28
+ edsl/caching/remote_cache_sync.py,sha256=eiwX-le7fDQ3VOLvS527Ka6I6CQKnAq4jsArcKqoLRE,6080
29
+ edsl/caching/sql_dict.py,sha256=cFYeQg-SQfhYDHiVLNfMgtTEQB0FruN79AD6-9TUCKU,15765
30
+ edsl/cli.py,sha256=7sg3Ib-GP8fLj4k2j97AWIDOC4TeI_uD9mYuqYvFFvI,1082
31
+ edsl/config/__init__.py,sha256=l1xfzpE3KDdRYvYgmhQ3qRMeBhL2ipKFkbPJkq7V_-Q,328
32
+ edsl/config/config_class.py,sha256=BJ48gRn30iYZAl90nY7QPO_DgvyUCk_lVKlmvMrzoXM,7969
33
+ edsl/config.py,sha256=bGl4u37pgyOUVPaqloZQ-92qG7TmC4Den7KA-icXkcg,165
34
+ edsl/conversation/Conversation.py,sha256=2DAm82AJ5HPT0NajGELWIa3lZOJnXCsTlVz5j7rQy90,9645
35
+ edsl/conversation/car_buying.py,sha256=88CeIt3tNOxrsaEf6qRLdEwV3A9xt-RVeneopYMtLVg,1941
36
+ edsl/conversation/chips.py,sha256=eEehLLQwm06QOH4B-kD7JsN7hFqQrkMOKLnjdNqqJas,3296
37
+ edsl/conversation/exceptions.py,sha256=DoUCg-ymqGOjOl0cpGT8-sNRVsr3SEwdxGAKtdeZ2iI,1934
38
+ edsl/conversation/mug_negotiation.py,sha256=su3u8jftdkzyhjAr413gEwnx6wAcuPjmFLeuE2EjLBc,2566
39
+ edsl/conversation/next_speaker_utilities.py,sha256=bqr5JglCd6bdLc9IZ5zGOAsmN2F4ERiubSMYvZIG7qk,3629
40
+ edsl/coop/__init__.py,sha256=uhGK0fJhGXDDPBTgZchDVvY44Q8pIlHFzL1tzjAWEds,1542
41
+ edsl/coop/coop.py,sha256=YX2u3HRlxz4bBjFMEmDY8adDl0M-aMAEAKLRmzG8zcE,64676
42
+ edsl/coop/coop_functions.py,sha256=5Vm8fFTRSg9dFnNBxYqZpeUABSZa2Ttzaal6zB13FGs,690
43
+ edsl/coop/ep_key_handling.py,sha256=xynaiFBXuzJuZxcgSEm0Pcd7xfI5SGmhe31jC3wNl_o,7875
44
+ edsl/coop/exceptions.py,sha256=EY3eNTeJM15VzFnag93hgmiqn4pR3Y-6nS9ixKGIhM8,8874
45
+ edsl/coop/price_fetcher.py,sha256=_IbuK9mVUgzsj95IcM_SPIQLgs-XG8l3I8mXHw5AV-0,4744
46
+ edsl/coop/utils.py,sha256=MgOJPJnkXZeK5wwUHtmWIWtBbwyujcKMpGagczX2jXk,6661
47
+ edsl/data_transfer_models.py,sha256=pPaKsbo9pgNcBB9kX-U2O_dUtNkd0Xm4JNmv26jrbhI,265
48
+ edsl/dataset/__init__.py,sha256=RIzfFIytKJfniKZ0VThMk8Z2fjejx91t9PZBct78xXw,422
49
+ edsl/dataset/dataset.py,sha256=mUIGkwshh-x0pFroxiVObQiZAP8AAMgOPWJxUyPsKsI,26880
50
+ edsl/dataset/dataset_operations_mixin.py,sha256=gNTdycqCVSNEzbqGO1ZE3XvuoeQHumJoLeVrkAPyFMw,59071
51
+ edsl/dataset/dataset_tree.py,sha256=6DSoryBBNayFCB8rAYiKIKLjBsZBqzQNPNmJPCx_CoU,14285
52
+ edsl/dataset/display/CSSParameterizer.py,sha256=vI3VTgTihJeCYGfmGp7fOhTitHZ17jrDGbq46Sa2rd8,3677
53
+ edsl/dataset/display/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
+ edsl/dataset/display/table_data_class.py,sha256=XQ1kHoBtbx-QBB-05FDwh2rip-XCZBex8dTkA1haLBs,254
55
+ edsl/dataset/display/table_display.css,sha256=d9HuZYpGvgpDItjYYB0SI88qEPZ4pLgxbhzty_o5DoY,2106
56
+ edsl/dataset/display/table_display.py,sha256=ZpqTTd3gvNh4JxKidh7ntRR39doFxclhN4FUxUjF8Ek,4216
57
+ edsl/dataset/display/table_renderers.py,sha256=zz8kipmhZRDj_lmFID-G_MCEVK-TJvT9GEcd50JMC9M,6483
58
+ edsl/dataset/exceptions.py,sha256=1s2MRR6i4kzL34cCTSbApmVsBtdnt3i85KUOJO3r-oo,3900
59
+ edsl/dataset/file_exports.py,sha256=tCgo9qR8VwKKSh44Rvtfyj6QONQ-BL2QRbIQl9-S7Xo,8164
60
+ edsl/dataset/r/ggplot.py,sha256=ZLqSrZZRzcgg7kH_JLVEgWFJUb95LxbMYBXGDGHVpOA,6959
61
+ edsl/dataset/tree_explore.py,sha256=hQjiO4E71rIOPDgEHgK8T8ukxqoNdgX_tvyiDlG4_9U,4624
62
+ edsl/display/__init__.py,sha256=aoLlMGphs3a12nMw9AL86n1IUHiB9Efpjgx_LcLXCE8,736
63
+ edsl/display/core.py,sha256=3Wd3evjQNtgSxQ8-Qt0O61Nikl-2ErgccSzqatWpRas,5024
64
+ edsl/display/plugin.py,sha256=t4ac8ko-pLT1KhYy8RKzhyTb4q4Mk5HWsh0RKzpXX08,5805
65
+ edsl/display/utils.py,sha256=XxijJfUMZQqtHdm4CLuCkfSIcwZQuiCx-hi9YC000ew,1663
66
+ edsl/enums.py,sha256=S829T_eEoCHM8sawhX8T649pb2IIezAN-D_jbt0ZoCE,205
67
+ edsl/inference_services/__init__.py,sha256=iSPvUwfHJrlBoH_L77ODMxKrgvYUkMGPvzy16ANR9ho,389
68
+ edsl/inference_services/available_model_cache_handler.py,sha256=nELA2DPHatM7l_nM_9cFcjEwXLrFMlA_rwm310bSxKY,6109
69
+ edsl/inference_services/available_model_fetcher.py,sha256=O1jxGpTf7FEoMnoXuaGauVKp1z1M1_ajs8S--Bkl5oU,7826
70
+ edsl/inference_services/data_structures.py,sha256=NJnZf5kSpgWwuDobTsxKYpwpxB1ddphfzr5fK4599NE,4243
71
+ edsl/inference_services/exceptions.py,sha256=NZI7slEzXH5pSyhGLpH3XhPEJYNb-TbJ1I6QQwOkgGU,5377
72
+ edsl/inference_services/inference_service_abc.py,sha256=8DxZoT3iAwp8CitQ5o2yVUBB26Kfbi5D9IzSti4axRo,2140
73
+ edsl/inference_services/inference_services_collection.py,sha256=pH0PF0_f2XYoNxHXcg60NK6el88Mswx_sYyeLiH281E,4957
74
+ edsl/inference_services/models_available_cache.py,sha256=bOvevfRn2HlmBcHalaDkjFLxiw0JJhsXVUHZo_OhgjA,4061
75
+ edsl/inference_services/rate_limits_cache.py,sha256=HYslviz7mxF9U4CUTPAkoyBsiXjSju-YCp4HHir6e34,1398
76
+ edsl/inference_services/registry.py,sha256=KIs1GpGSrczqukm6QsKe9pPn9LnfSrpT_wVAthU3-HM,307
77
+ edsl/inference_services/service_availability.py,sha256=BB8EeIORRTCPIds_2rmtXxqfwy2fb4caz_zxWh5L8yE,4225
78
+ 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=RSufg6KTZlXH1pB60takmWuL9KU727yUwxqXcAXgBXQ,9301
82
+ edsl/inference_services/services/deep_infra_service.py,sha256=zHllzatsfvXrSV4MZ92Z8LJwfucmjMqDzvqkg038DAc,321
83
+ edsl/inference_services/services/deep_seek_service.py,sha256=eo78-AaKhLDalo09PrYztIm-6OXO7fv8tX5QB2tG25o,304
84
+ edsl/inference_services/services/google_service.py,sha256=fWcQt9U-_OULpLvW5mtRFgmz4qDMaQHG0ed88XtNJIY,5285
85
+ edsl/inference_services/services/groq_service.py,sha256=eSxVbQXzrc6rtgVyMgDOsdG08n1m8YqPaB8gp_Ia3IE,484
86
+ edsl/inference_services/services/mistral_ai_service.py,sha256=Q4eWCAUhsibMaBpq5IdGAovt1hgNd1flU5Fz0JBL8M8,3724
87
+ 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=3dbQU-xOvQFieSfF2d7LEutWf9qiGfPMaZEqHV3jZIQ,3009
91
+ edsl/inference_services/services/together_ai_service.py,sha256=biUYs07jsrIHp19O81o0nJCwYdSWudMEXdGtmA1-y60,6151
92
+ edsl/inference_services/services/xai_service.py,sha256=hJbXF26DuFTZdy0lYT1wo3yyuWDcwcXA6EiGYUahK1w,280
93
+ edsl/inference_services/write_available.py,sha256=9L8chJb8iafHfwRBfqZKjMjkSBRWUa5gEe7F0mxsZu0,261
94
+ edsl/instructions/__init__.py,sha256=1ejkzfAbaG4WoACLkY3uA6V8vPTkyrjAn7oajLRPB7A,292
95
+ edsl/instructions/change_instruction.py,sha256=NqZkq2du5ym0Iud_8EiD19epWp-ClkEO9OevmvYQZLw,1440
96
+ edsl/instructions/exceptions.py,sha256=gSu8cVMEJMyam1WoiIqImce0HG7sRGbGz2r6TPBLq9I,2074
97
+ edsl/instructions/instruction.py,sha256=PVdaCzvNQ_7uYmRk4Yc3lSfKBeZ5foesaHAPbIZRBsw,1793
98
+ edsl/instructions/instruction_collection.py,sha256=7lYlVVqkN1QLnP4oDZYB8ZRzEAI_wgtofpgmgaG3cKU,3195
99
+ edsl/instructions/instruction_handler.py,sha256=7aFXC7XcxfJhRpUH0N4daDJ3o8Fs6gQkPmZ9vGu4L-Y,4192
100
+ edsl/interviews/ReportErrors.py,sha256=5NC6fFGaVe6Qk4gnFd7fUFRsw9MKb7g4MFOr-EblS0o,1728
101
+ edsl/interviews/__init__.py,sha256=BC6NBomroZEc8uwOeZBMtVuXwAVQzTzm7kkgDBqEBic,328
102
+ edsl/interviews/answering_function.py,sha256=pDKVb2KFTFA7atjVRPhVqM-dy5OWidnPm52o02LZkgw,9515
103
+ edsl/interviews/exception_tracking.py,sha256=WDgr0rrcceX6u962mXD9VXxJpvYunX2yFZmplaBdnnc,10177
104
+ edsl/interviews/exceptions.py,sha256=qID-2HnSHJt5DyxBQd4698GZfTEu8rwk_VbIrBHcIRc,2626
105
+ edsl/interviews/interview.py,sha256=Cooe-qdWEfQ7vbEpOn_90ID-bn0ZpilpOy3XRZlHdmk,25239
106
+ edsl/interviews/interview_status_dictionary.py,sha256=BM8Ef7vxnkhCxsWfm8C69mtiO8yOcBtf4xhUvw-ngVw,3046
107
+ edsl/interviews/interview_status_enum.py,sha256=KJ-1yLAHdX-p8TiFnM0M3v1tnBwkq4aMCuBX6-ytrI8,229
108
+ edsl/interviews/interview_status_log.py,sha256=sRiQ9kIT1WcF-8beETn6E7IsdRRrfbco-yjdAjkXncw,3587
109
+ edsl/interviews/interview_task_manager.py,sha256=U2VTIXY7I4QpDE_FEoqhALNQwJjXkSTiHJNE7PwJMsE,3556
110
+ edsl/interviews/request_token_estimator.py,sha256=fGBAkldZzDLMsb8k7UPALCIZDAsWV6E1iAtbp_dGuPo,1343
111
+ edsl/interviews/statistics.py,sha256=gcTrF2mol-xfahRdOr2SC9gUtYk8_4nF5M7nfTIwNmE,2434
112
+ edsl/invigilators/__init__.py,sha256=fKbZ7p9-kMelpvET3Ku2Owu-tL_apC-8gi9JychpMBY,1843
113
+ edsl/invigilators/exceptions.py,sha256=ejoF-Gt-YcnW1yHyfpJ3jZm8AC_zD0GCYafRO2LlAMQ,2767
114
+ edsl/invigilators/invigilator_base.py,sha256=DgrXTK4AAxXr4wg2pzc0p1aGPPf1UUt01C-JW1UBTvo,20099
115
+ edsl/invigilators/invigilators.py,sha256=_WzMxqFinYdO3OA5hD7f3O5s74b7bui0LUOIfo0OF1U,20855
116
+ edsl/invigilators/prompt_constructor.py,sha256=THHGcZPI-QUOH8Z9cQEzH7bZEoo0V_Nc_Phlhc9AzL0,19115
117
+ edsl/invigilators/prompt_helpers.py,sha256=LuMZFZkInPY8M7Rw9fG9rpJIcT89tr2_Iq10ZHH_Y4A,5409
118
+ edsl/invigilators/question_instructions_prompt_builder.py,sha256=E5zpwctpt_5JjONkZRcMwB0MACAzDvvnzUhmuWTnjd0,9684
119
+ edsl/invigilators/question_option_processor.py,sha256=TRJgeFUH4m2EUlkjWkXnMWiE_CXQjO0gHyPOd_qjbec,9504
120
+ edsl/invigilators/question_template_replacements_builder.py,sha256=a_-n0TWE4PLK_u_b0lNd_k_omXh-GoZHAxt6XWunz5c,11918
121
+ edsl/jobs/__init__.py,sha256=q2F6wnmfHINSvGDVS3A7y1ogrZ6eV31VEmOTu9ltpGU,255
122
+ edsl/jobs/async_interview_runner.py,sha256=WXNkafgfs6dVvo3Xhfbg1l7T3-hN51Z8DJJqiY_Vdgs,7166
123
+ edsl/jobs/check_survey_scenario_compatibility.py,sha256=8z367ggPTu8S-ZleC0zCaHdQWtnT-MS27Ak2CgHSCaY,4042
124
+ edsl/jobs/data_structures.py,sha256=gWBVJRtD9vtg7aDtOdJlClu5cntA2CxjMPsmk-4j0x4,9656
125
+ edsl/jobs/decorators.py,sha256=vpeSgI3EP4RFz5V_OclFdnhiSrswihavAN8C9ygRhGE,1135
126
+ 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=BZzXausEu-KdxM202OP1QyHY6f0pKmsNsDHTA_U9BCk,11872
129
+ edsl/jobs/jobs.py,sha256=ZhbbfDDVwCznNhIkAP7ObGxvyZJLbOg1QfRW61II-M4,38936
130
+ edsl/jobs/jobs_checks.py,sha256=CsX5lfCeN39q6zyc0UcFMyBpsPrk2ysLKtoX1zSFD2s,5405
131
+ edsl/jobs/jobs_component_constructor.py,sha256=nOlQ6nuqnVb9GgVkB8tMs6vtyVU2Kn3nkzOY8AWpxA4,6913
132
+ edsl/jobs/jobs_interview_constructor.py,sha256=1XTfQ-XAsabIagYQWWn9jLkdXAWqw_7KffNVLQWCfDs,2001
133
+ edsl/jobs/jobs_pricing_estimation.py,sha256=z8PRx-NZfxqqcGfUbvhZeoRzZnP79b3KvLTCVs1CU3w,12792
134
+ edsl/jobs/jobs_remote_inference_logger.py,sha256=1lOlzsBXg69zwVP40Je-WiI4wcvS-Ov7BBuW6V4Mkes,9185
135
+ edsl/jobs/jobs_runner_asyncio.py,sha256=ax70yCv_DJSNsS-UXzbzTT2E6RiZS20t3P5OVhnWuzU,11046
136
+ edsl/jobs/jobs_runner_status.py,sha256=hIHHC_sWkK6clqQwnxz8YXAvwrEoL-VVtwWnHij3vfw,10446
137
+ edsl/jobs/jobs_status_enums.py,sha256=li94KU-DHNEq7ksR2ikQxms6W-J7sfiRlmlgGQX3F-E,172
138
+ edsl/jobs/remote_inference.py,sha256=W2bGziDk6xjM5Zm5XrM18FZwMJlgHK3MK5rsTS979DU,11602
139
+ edsl/jobs/results_exceptions_handler.py,sha256=btq3KaFrVzZGB1fhQd69UrXiXnChOvMhJSggx0MDFAk,3059
140
+ edsl/key_management/__init__.py,sha256=JiOJ71Ly9aw-tVYbWZu-qRjsW4QETYMQ9IJjsKgW1DQ,1274
141
+ edsl/key_management/exceptions.py,sha256=dDtoDh1UL52BUBrAlCIc_McgtZCAQkUx6onoSz26qeM,2158
142
+ 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
144
+ edsl/key_management/key_lookup_collection.py,sha256=b1STYU4FIqgCtCf90bRZh6IXf8kcoTC8ad8RSHPmw-w,3471
145
+ edsl/key_management/models.py,sha256=z9TimNMnz47mnITM5SlJy2m2sk1aKKtt0ybV89rsaiY,6703
146
+ edsl/language_models/__init__.py,sha256=WtefJs6XOCn5RSz22PgoAi3eTEr1NzGtnnBpDIie2mg,240
147
+ edsl/language_models/compute_cost.py,sha256=noWk0osCANksfKSh0sXFkPrcQegtSV8-jCRBjz_52uQ,2570
148
+ edsl/language_models/exceptions.py,sha256=P9dMA8XfK_qcuXNJZ-Xsb_Ny-12Ldu3fPC133RB40Ek,13728
149
+ edsl/language_models/language_model.py,sha256=Zx51h1zh2dY4V-xPJMOj8NuvOi8y5vqIhUJ47teZw0w,40672
150
+ edsl/language_models/model.py,sha256=UhBFV7eSgUBub0hR7vpmnerXvLXTX-4Xda2tA_eNJbU,11616
151
+ edsl/language_models/model_list.py,sha256=Eb62xQdrlayqWYyJVgYxheMiNi14e1U9b_12qYzy1ws,4522
152
+ edsl/language_models/price_manager.py,sha256=vLqMmrFecdW6aH4csFoM8w_MtRmMGCmi8pb79oS5_EY,5747
153
+ edsl/language_models/raw_response_handler.py,sha256=i2Ye1WzjYq_2YJ1EKX946dx9m331GilwqC5qymGJlEI,4003
154
+ edsl/language_models/registry.py,sha256=HY1fEHKXz92AQF8fIMfkvtA8p-_o9mWwr9rt2VDORT0,7172
155
+ edsl/language_models/repair.py,sha256=ljm0xc9e1tMdyKc9b-v7ikpYRBh639xJ11SkDzI2vZE,5245
156
+ 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
+ edsl/language_models/utilities.py,sha256=SMhP6-fs7oU2YU-iphF2mxTnN_tw6spDr2CJfQBBCCk,2235
159
+ edsl/load_plugins.py,sha256=rJJiVHguGoeri4ZT6E3AKftRjibnw-o6JMA9R6Qv3Ng,2480
160
+ edsl/logger.py,sha256=vnik_w_gHPxdRgF4ctgkuhjBeFwUkDt0c0uVUwWKfy4,4291
161
+ edsl/notebooks/__init__.py,sha256=7UUs4A8A5BlqVDJP3sAnnSYSsEmetk1HdzSu4IBLU4s,55
162
+ edsl/notebooks/notebook.py,sha256=9nAZUIkRqrh0j3YMel_QZ-RDmwKtKhMbZnACEb6r8_8,8204
163
+ edsl/notebooks/notebook_to_latex.py,sha256=Q_NkRQvJnd14EyQHvc8f1uQ4g4EQ6YsL7GRK3hECGGk,4470
164
+ edsl/plugins/__init__.py,sha256=Q7t09EbVrBbofD3B5mfstITCVPSquuXeZC202Gbsnew,1567
165
+ edsl/plugins/built_in/export_example.py,sha256=qUSq2ppYuMfRTX-gn9I9FBKpejMJ1XmDnnJdIkvoZt8,1522
166
+ edsl/plugins/built_in/pig_latin.py,sha256=TNlJhF1LUXK4RiV6GpgJvJ9lIZF1jPvpodiTcjEdgO4,1995
167
+ edsl/plugins/cli.py,sha256=iBQXnT1pvGXw4gFafxYsFKS5OIuco62BvUD4g1VbP-A,14389
168
+ edsl/plugins/cli_typer.py,sha256=MLtSHxpTYDMZeePfBRQBW45BV-16OTl8o3elFn2ueQI,10674
169
+ edsl/plugins/exceptions.py,sha256=iDNhTK4wBTLdBIB9mdLbcQL66GTB4MsEQUoLCcj7r6g,965
170
+ edsl/plugins/hookspec.py,sha256=Vxn_5S5axcswtbJn9nZE9MZUQNkKv8ggPzxKr9V2NPg,1558
171
+ edsl/plugins/plugin_host.py,sha256=LSgf6D7wFTLZoNwOBTzLDjalbhtmfyLqgo0W_Fd-lyY,4086
172
+ edsl/plugins/plugin_manager.py,sha256=ifuJLgcySmLvGOc8ka8tSj-3d6ju0NknEK22pLF1L84,26523
173
+ edsl/plugins/plugins_registry.py,sha256=stAaq6vkuurHc3ViHrLj5g2VomMpsLD9ufa-k-HHfgk,5165
174
+ edsl/prompts/__init__.py,sha256=AYQeiOipPhUPPS8ZghZsM51SEd2jRyJm5NAaHo3Nx9E,97
175
+ edsl/prompts/exceptions.py,sha256=AcQCy8JGmS8ODCvRtu4aCH14OEI-oYxF0tX-ZAZ3Puk,4460
176
+ edsl/prompts/prompt.py,sha256=ZX9fxktKmX2lfJC5B5woK8hBVtnm_roXTGpBgYrZ0Dc,14204
177
+ edsl/questions/ExceptionExplainer.py,sha256=BgM80FRPJjS_TrY6XaVmlT666MzY9DEagviGQj9-WEQ,2868
178
+ edsl/questions/HTMLQuestion.py,sha256=lx3Sysm6fMZmFc9hifnkGslt7ZBpDEvziM9-IJFMJLU,3238
179
+ edsl/questions/Quick.py,sha256=HRLT2Lmhd1Gj4ggkrpCMYhzeWsRwlQaigu2EzdiXb5Q,1717
180
+ edsl/questions/__init__.py,sha256=Wq8yf8U2Au0WxRYgFaBCvzBQYUXh8qOOE_s9ywTwUCE,5730
181
+ edsl/questions/answer_validator_mixin.py,sha256=4QfmHSyI70v1mj3GQQyV-l8NXao2gAMD5ihw_2I0sRw,14919
182
+ edsl/questions/compose_questions.py,sha256=oZIdl5My6fcyBKg5qkpnsvTZqBDrXT_fG-mXXYeeA0A,3420
183
+ edsl/questions/data_structures.py,sha256=PbIML8388sHogUHGamz21DXKEpfU8zwyiGflc1y0cHE,432
184
+ edsl/questions/decorators.py,sha256=ZijaRYUntAcg0JEztCiOEpcDvvVie___85Zx5ogBQXY,596
185
+ edsl/questions/derived/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
+ edsl/questions/derived/question_likert_five.py,sha256=kex9cVXdLOZ_FYUAotxU_7ToLv46xhXcQsuAo6ccyyA,6549
187
+ edsl/questions/derived/question_linear_scale.py,sha256=0VpfalxgPpByQ0jP2wmyTXKHSSwx3Y1Y-nvF49NoIB4,3354
188
+ edsl/questions/derived/question_top_k.py,sha256=MO8OaPIpl9mCGXwqnIEUPGkJUmiltto8GcFrB1nIOf8,3236
189
+ edsl/questions/derived/question_yes_no.py,sha256=h-r1KySY83jbiK73NAORikxLTPtKbAqj8mgVpSLBU0c,2693
190
+ edsl/questions/descriptors.py,sha256=RmZJJQ0OvZFYhEqP5n5pPzhhsvCx5isMbrLirjrEEUk,16559
191
+ edsl/questions/exceptions.py,sha256=tduRj_bBeGlRza7PfkQclC17Z5HUniED4oveLTfyR6o,13401
192
+ edsl/questions/loop_processor.py,sha256=gwq995z7Whmzhps2h16f6J_BIqc5ddyvnZQFW_qC62g,6632
193
+ edsl/questions/prompt_templates/question_budget.jinja,sha256=-ekZYCa_KRc-xLcpf3j-YmXV0WSyIK_laOp2x3li-tA,737
194
+ edsl/questions/prompt_templates/question_checkbox.jinja,sha256=V-Dn2VJhfXyIILWIhMviTfQ5WuXh1YZerwicaA6Okzc,1136
195
+ edsl/questions/prompt_templates/question_extract.jinja,sha256=27b8iMJaA2h5UOrHPMiBCapMnJou4vSkZzkZndK2s1U,343
196
+ edsl/questions/prompt_templates/question_free_text.jinja,sha256=lU95cakq5xS-1h57WsudJLd6hXrJfRmMdxIGgh1avw8,102
197
+ edsl/questions/prompt_templates/question_linear_scale.jinja,sha256=VB9bFPeLGGb5aiFD8zWIfwWeCxJzWmcYDki0MCoWDWk,455
198
+ edsl/questions/prompt_templates/question_list.jinja,sha256=3033olwvBIzZFyfJRI45pUobF3qeb5C3YW3u-LBOYr4,602
199
+ edsl/questions/prompt_templates/question_multiple_choice.jinja,sha256=sSyAhnexZF6oWqHL-45r7o69vrFcCbbYXLZ3zu7q76U,761
200
+ edsl/questions/prompt_templates/question_numerical.jinja,sha256=c20sp3HfFonfaRwwmnF7HjAEugU15QlgpNAIkNHasl0,1218
201
+ edsl/questions/question_base.py,sha256=O2aza1MpWD_uOp-pllAtoZ1Trcx5oSkI_cYaaNMn_JE,34699
202
+ edsl/questions/question_base_gen_mixin.py,sha256=Zb1nd0O6NR1c1rf6ik-Im7WPXAiIQrHkZTqK4PPUXSU,9768
203
+ edsl/questions/question_base_prompts_mixin.py,sha256=245sJk94KfFVIkafx-bM4YJnkNVt7fsTaO_7uSOT96s,11928
204
+ edsl/questions/question_budget.py,sha256=A_ej_gjvFikUFNRsU9kLwKtjKUsHEgGOBYAMFmoI4PQ,8435
205
+ edsl/questions/question_check_box.py,sha256=r6ljEPv6xlkaXChhzghBrS8dG9yvCvLUGtf84yO8yOw,12720
206
+ edsl/questions/question_dict.py,sha256=hB2eKAT4E6OgQgjsdF64oYk8qKnxNbK-chAduzh12O4,13253
207
+ edsl/questions/question_extract.py,sha256=X7WcrTDZZGVLt_V9kHchqoh_KGJ4nflbJ88pENoOEKE,5959
208
+ edsl/questions/question_free_text.py,sha256=BghrQlDl6vgG44Cqgt-YlfxtjpRd3yMeBaazyRep3G8,10567
209
+ edsl/questions/question_functional.py,sha256=e8j7-8FGbKd9lMHBIDpmDTSBuBFrS6zSa5EpFj1fBNY,5752
210
+ edsl/questions/question_list.py,sha256=aQWSXSFCrF_d1tOoQiOinOMiX8IKIy4Iy9OyIjrgSgE,8151
211
+ edsl/questions/question_matrix.py,sha256=O0BkezRNnSwnCn9sJlnQyd1qKUqi3KptvVreQH5dksc,10212
212
+ edsl/questions/question_multiple_choice.py,sha256=TP2yAo7EGrF-qd5Mox4RnvpYeI8BJ33_gXboU-hez04,17038
213
+ edsl/questions/question_numerical.py,sha256=QfmHDwQ9N1QcUjsDsk9ZNa5_mjzUp6G7kxBFGvW5QDc,4697
214
+ edsl/questions/question_rank.py,sha256=Uaxs2SF4IXqe8CjvWozya3CuyG47vKTws28vhRkGFCM,11217
215
+ edsl/questions/question_registry.py,sha256=okwBTGeMXsRrTBLBpu6gBm2ytoJ5WebeC5alvPkAnpc,6200
216
+ edsl/questions/register_questions_meta.py,sha256=S1yNSxvne4IF1k7y3LVsGtxIZ2xojFCy5qKpPREVZYE,2617
217
+ edsl/questions/response_validator_abc.py,sha256=VmI5hY_N4-46BE-g7Wl-PJ8l1bQU2yW4EGz6QpvfUcA,6619
218
+ edsl/questions/response_validator_factory.py,sha256=IzRHHcr2CjWFLgCHXHojwWa5Erc6E8pilTLys1M-5zE,1301
219
+ edsl/questions/settings.py,sha256=er_z0ZW_dgmC5CHLWkaqBJiuWgAYzIund85M5YZFQAI,291
220
+ edsl/questions/simple_ask_mixin.py,sha256=rbiKvNiH0-Fe5-hWSRqi1Yz0RbmwJ5bgU17z8Zf8oXc,2258
221
+ edsl/questions/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
+ edsl/questions/templates/budget/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
+ edsl/questions/templates/budget/answering_instructions.jinja,sha256=tF3bNv9_vIOjsWeZeRsMdgprpNrAKhUreQ53LUh1DP4,352
224
+ edsl/questions/templates/budget/question_presentation.jinja,sha256=wrZnM5ZbNhPZsvbtflfKrYpR3lH5ELDI7NM2l8pW8Ro,198
225
+ edsl/questions/templates/checkbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
+ edsl/questions/templates/checkbox/answering_instructions.jinja,sha256=UCPWWsnaAW3oB05IZDLQtofHXBesbqQxguXMfykUTQU,441
227
+ edsl/questions/templates/checkbox/question_presentation.jinja,sha256=2u8XIkFPWzOuhbeoIvYBm6zUWnTHF66cGJXIznxVobw,807
228
+ edsl/questions/templates/dict/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
+ edsl/questions/templates/dict/answering_instructions.jinja,sha256=-yNQw1yah8YkOYNrUq6zq2ELDgGp9KFL1ztJvPhuqm4,753
230
+ edsl/questions/templates/dict/question_presentation.jinja,sha256=OLDuxUc6BjT4InCtAkK_e-D5qbsDmtxw1Spp9pWFYhU,17
231
+ edsl/questions/templates/extract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
+ edsl/questions/templates/extract/answering_instructions.jinja,sha256=sjHH4mBdoi6fdpHtRNWG0q3E4ZihvBpVUf08TNnwad4,253
233
+ edsl/questions/templates/extract/question_presentation.jinja,sha256=OLDuxUc6BjT4InCtAkK_e-D5qbsDmtxw1Spp9pWFYhU,17
234
+ edsl/questions/templates/free_text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
+ edsl/questions/templates/free_text/answering_instructions.jinja,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
+ edsl/questions/templates/free_text/question_presentation.jinja,sha256=OLDuxUc6BjT4InCtAkK_e-D5qbsDmtxw1Spp9pWFYhU,17
237
+ edsl/questions/templates/likert_five/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
+ edsl/questions/templates/likert_five/answering_instructions.jinja,sha256=DK37QaSfUdXu9JZKu3RYXl1yi4Hg2kfKfCb3CRHITII,331
239
+ edsl/questions/templates/likert_five/question_presentation.jinja,sha256=hoEVj4GQD3EYnR2AStXkMFOJeqISNoEVzBd8-cx2yWg,273
240
+ edsl/questions/templates/linear_scale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
+ edsl/questions/templates/linear_scale/answering_instructions.jinja,sha256=reWlNj1ObkpZTuFXlqk_dF92hPgC74ATziBv5b9KobE,253
242
+ edsl/questions/templates/linear_scale/question_presentation.jinja,sha256=32E7yJcxHd3yn-QG_bq47VJBiB0xqbxMK8TXJw-Obcs,148
243
+ edsl/questions/templates/list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
244
+ edsl/questions/templates/list/answering_instructions.jinja,sha256=hhWiozX4Sqf7n9NrV52sripxM2ZTrDz74axLDl6s6tE,265
245
+ edsl/questions/templates/list/question_presentation.jinja,sha256=ZEOZr_SpQ0V8qKKjFlyVlIQr_nAU_zosSsXyidEV_yE,131
246
+ edsl/questions/templates/matrix/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
247
+ edsl/questions/templates/matrix/answering_instructions.jinja,sha256=65igOaEAE6DiYGvfM8uEWRfVCLtCztcxYYCKc9JILIY,211
248
+ edsl/questions/templates/matrix/question_presentation.jinja,sha256=iANTk0qhLmiYXUNRAH2bqDgNgiLJGc7IsfkwqaBISvs,397
249
+ edsl/questions/templates/multiple_choice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
+ edsl/questions/templates/multiple_choice/answering_instructions.jinja,sha256=eScbqZtrNDOX4IlZzP0HMA7Cj-x-fT9UpyQKrPgiif4,330
251
+ edsl/questions/templates/multiple_choice/html.jinja,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
+ edsl/questions/templates/multiple_choice/question_presentation.jinja,sha256=hoEVj4GQD3EYnR2AStXkMFOJeqISNoEVzBd8-cx2yWg,273
253
+ edsl/questions/templates/numerical/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
+ edsl/questions/templates/numerical/answering_instructions.jinja,sha256=70CnuIbdRKGiYJk7316-FFloRh3Oeg_RvUu4tthNKqs,323
255
+ edsl/questions/templates/numerical/question_presentation.jinja,sha256=8lMUWtEPHD4XOAyVEfCmWSwRFrdUa3lo8sxzogDyzWE,183
256
+ edsl/questions/templates/rank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
+ edsl/questions/templates/rank/answering_instructions.jinja,sha256=-LWrhVJ0ZwQW_DXhARh5GweqlarWbhZzoqwr6tE-33s,433
258
+ edsl/questions/templates/rank/question_presentation.jinja,sha256=jt6dFNg22izHaNxRR9AHGvQqckdDXnt65jsA4CovVIM,332
259
+ edsl/questions/templates/top_k/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
+ edsl/questions/templates/top_k/answering_instructions.jinja,sha256=2V38SJZ0Y1E70mHm0HJUzGKregiSlEqVYIcqbncxh5c,266
261
+ edsl/questions/templates/top_k/question_presentation.jinja,sha256=2u8XIkFPWzOuhbeoIvYBm6zUWnTHF66cGJXIznxVobw,807
262
+ edsl/questions/templates/yes_no/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
263
+ edsl/questions/templates/yes_no/answering_instructions.jinja,sha256=UAcssfcYeW8zytmPOVJOVQEdwdvlRspE8WnatYvreJQ,172
264
+ edsl/questions/templates/yes_no/question_presentation.jinja,sha256=hoEVj4GQD3EYnR2AStXkMFOJeqISNoEVzBd8-cx2yWg,273
265
+ edsl/results/__init__.py,sha256=RKbHY0g6s_k42VcdmTOZ2yB_nltiJnnbeQAkUY5WD9o,129
266
+ edsl/results/exceptions.py,sha256=u-TQsazt_qj-G4eJKBnj0UtpnIiw6A2GcCLJ2wTYE_g,6536
267
+ edsl/results/report.py,sha256=O3sMwiuQnNeZhcMWfdDBS35B__gXm32ntg5cKA3YIWg,7483
268
+ edsl/results/result.py,sha256=9GQnd7WfwHU_YI5UJOx2Ec1bLnqdj8JxntXrupvkjaY,26485
269
+ edsl/results/results.py,sha256=1LNw43R7ztU6uQcZ8h4_bLD4wV398BPA7nwPzbQEU3A,56623
270
+ edsl/results/results_selector.py,sha256=sQNkxPNeytrPaCdlg8PwTm_g3pQpRg11YJSj-VaMLi0,18056
271
+ edsl/scenarios/DocxScenario.py,sha256=ul3nkX826m_T6LFptswqtnH5czP_yxMlLWgbTmFIZI4,482
272
+ edsl/scenarios/PdfExtractor.py,sha256=6nPZ6v9x2RrU42EkqlEcW3MS-WIQpGfwg4--6WvEC8I,1972
273
+ edsl/scenarios/__init__.py,sha256=cTAxtcWV4sWp7h1hy4G3tgh0WYsjao69w2G15S-YpDQ,1282
274
+ edsl/scenarios/construct_download_link.py,sha256=ps6BTiiQpsiVTTcqqGQYL0elHdIZLesTl_2RP4vXAbk,5120
275
+ edsl/scenarios/directory_scanner.py,sha256=gnDXU1jKSjSE3LXEhE7ilfJUL_sxK2HHmsA2LcudwVg,11680
276
+ edsl/scenarios/document_chunker.py,sha256=EpB0V0oxLzpKntl00Qa3VZNPS7sg9aXdYyqKxhFFzTM,7680
277
+ 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=Zb9hA2i9jrDCONjcptWYj0dkSCAzNyL8EnHbNT3dtcE,26704
280
+ edsl/scenarios/handlers/__init__.py,sha256=9r1fDjUviGXso9h4d05wG9RECfqzfps55CQgb-ojCBo,848
281
+ edsl/scenarios/handlers/csv_file_store.py,sha256=kXOms0ph5JJj6jSbpfQ-SZjuT4vvSRhq5AGpv1L4TPQ,1369
282
+ edsl/scenarios/handlers/docx_file_store.py,sha256=KSKAAUIWF2K5xr92nx7UGQ9djgtDX4ke-Eyik8QAdlQ,2155
283
+ edsl/scenarios/handlers/html_file_store.py,sha256=f5xbdkSo-6kTaqmG7VRb3yp1lOHvKvuCu4LMlKUppDc,913
284
+ edsl/scenarios/handlers/jpeg_file_store.py,sha256=JuRLVq4NlorcXEgOqKjkpKrQwtyl5OApNLNh2P19q80,1135
285
+ edsl/scenarios/handlers/json_file_store.py,sha256=39pMAVo57VEhbNFkGx5DwTmo3tYAr72OhTQNkGaqi9Y,3669
286
+ edsl/scenarios/handlers/latex_file_store.py,sha256=3ivQIL6aBNoLK3sYKwRnuf-z3PwtKZ5j9IXU1xtZuxk,92
287
+ edsl/scenarios/handlers/md_file_store.py,sha256=LN7OxE2zRqjl8EC1S4dptvfmxSJ6bKOPaXBtaTyeaQk,1475
288
+ edsl/scenarios/handlers/pdf_file_store.py,sha256=OG38q__vMqfmorwlWVnynmcWMgdnEvLzTxEI8nkzyhc,1804
289
+ edsl/scenarios/handlers/png_file_store.py,sha256=shsk5hTFUGBWetvawKTUW4rNUpjPGSb9upVZWhu8Uj8,1131
290
+ edsl/scenarios/handlers/pptx_file_store.py,sha256=XXGMAe9bry3LLW36XEQ-XSTfDQbZk5SKoFPQX2RWduo,2980
291
+ edsl/scenarios/handlers/py_file_store.py,sha256=evkqAX70vwv8ss2g7Nfy5BERH4taK_137iZpfvYavL4,9687
292
+ edsl/scenarios/handlers/sql_file_store.py,sha256=wa_Qw1-bk-tHhtQrp1IAxSAROygEQ5Fx0RCBJuYU0Uk,9585
293
+ edsl/scenarios/handlers/sqlite_file_store.py,sha256=rwsfxD5G_XNEa-aRCx6A83lW0i2OiS51EzYsJeTE7ps,4936
294
+ edsl/scenarios/handlers/txt_file_store.py,sha256=oGMqm2X_dWTt0W2e2zDung2i_A_z2mMmm4rrQImnVtU,980
295
+ edsl/scenarios/scenario.py,sha256=V1jpqBNR5-gfBdrJ9xAzFRrTaAEI6p7rBaLWaDTGObI,37722
296
+ edsl/scenarios/scenario_join.py,sha256=1r_czZctN7JKbw38bQolKdz0kBaMqhWzo8IsxzHK1TY,5409
297
+ edsl/scenarios/scenario_list.py,sha256=hT3sebdW5ZygXE6JM1Fei8gqTDAChvYh_9DXFZv8bsY,84899
298
+ edsl/scenarios/scenario_list_pdf_tools.py,sha256=sehQro5PzJ7Y4Ck9VJ8HTxKN8HSbk3aDipVYuxaJbdI,7686
299
+ edsl/scenarios/scenario_selector.py,sha256=nG4zaF1uTJAdAizL7u4N94IUv9YKMSoOZyTKWYcTr2c,5952
300
+ edsl/surveys/__init__.py,sha256=04hdYqBBdb9jtZVkZffbFszr0yzXVPPFiI-XhgZRLu0,327
301
+ edsl/surveys/base.py,sha256=XJHGEbbsH6hlYYkmI4isVLD8guLz8BdhR-eQRL78mc4,1115
302
+ edsl/surveys/dag/__init__.py,sha256=DJw2-BlnSASU4qavgfOvAtDVhhdMmoXaeB5xC8qc-Rg,102
303
+ edsl/surveys/dag/construct_dag.py,sha256=MZ6WZ21WWXri_U0i2eJB1fEMsSjci6GqAO7dUDBfffw,3232
304
+ edsl/surveys/dag/dag.py,sha256=tMLeMFF9jIiq6W7YYzmNm8wQVuUBie51ftgrzqHNoxQ,4432
305
+ edsl/surveys/descriptors.py,sha256=FDSgRvEO4ykwTJfPi_rBYFWKeCMy1udt_OOn0BmcVvw,2157
306
+ edsl/surveys/edit_survey.py,sha256=81vIGSFqOu5HWRwMhfQvBep40KIc7TVorpJsTmWQtc8,8858
307
+ edsl/surveys/exceptions.py,sha256=RthkSyPuNFzVthZ2knEikINKtPXXJtqZGD4zlmK0_AE,7241
308
+ edsl/surveys/memory/__init__.py,sha256=a481sdcvprS5zSNWgOlptHarGK71mO7cyMFlNjrZftI,166
309
+ edsl/surveys/memory/memory.py,sha256=-ikOtkkQldGB_BkPCW3o7AYwV5B_pIwlREw7aVCSHaQ,1113
310
+ edsl/surveys/memory/memory_management.py,sha256=cugoApZRhQAowY_GDubUO3vCc0P5qk6WwRhlOOIaljU,2900
311
+ edsl/surveys/memory/memory_plan.py,sha256=hYsjKN3QZMu9KAEJibF8ROMVOxq_zT-Al-aYgHFj32c,8818
312
+ edsl/surveys/rules/__init__.py,sha256=yXrL1uzhv1PdndhI4ArR5-QyMy18Q1Unv3AXpjswHjs,160
313
+ edsl/surveys/rules/rule.py,sha256=S9XnZNSSHMK8E2HZ4w0imJjCW8RpoD3DZ1p1vSKDp40,15130
314
+ edsl/surveys/rules/rule_collection.py,sha256=KK3xyklLYyQL5ubFFX_UWXUFM0rLcZgv8L2ofZBBjYo,14140
315
+ edsl/surveys/rules/rule_manager.py,sha256=SD3wNFlEzmUBzpJsecrup-BugKU2dF5E4XWYyKd-EXg,6332
316
+ edsl/surveys/survey.py,sha256=_BBxt98wPJrKEwzDaVacYqYYw7oDva5IosiD736hcP8,71717
317
+ edsl/surveys/survey_css.py,sha256=fIdiLuXTUq6KuoXXAU_LTHTTe6RchnCmZpj3j7qnt5Y,8796
318
+ edsl/surveys/survey_export.py,sha256=rmlRdLW_KYuzkPxM65NU0DZlihH-67tUoCBc7I-7VxQ,8275
319
+ edsl/surveys/survey_flow_visualization.py,sha256=aEmmwYeaa2YaTILEwsRANPfmNLut_oCmUd9iHPBtXwA,9550
320
+ edsl/surveys/survey_simulator.py,sha256=RyVNqiB7IyFFqDxW57zj_ZeELPfjTYPrwnN5Ckcloxg,2814
321
+ edsl/tasks/__init__.py,sha256=UcqrPBCdu8Zaic3yzjt9vXuvTM95uPhoBvw6HmtsPfQ,1551
322
+ edsl/tasks/question_task_creator.py,sha256=ZSht6I3k5JjQaARufj1hdJbvWltwUzx40ikvmAjL0FA,12110
323
+ edsl/tasks/task_creators.py,sha256=u-CxzB0Qv90PDkfi0bQV3EAT89co9fXIal5JOUPcKls,5616
324
+ edsl/tasks/task_history.py,sha256=yAAk5mCEatczIAgLEOWq_Xq-KUg1JccWWwY7tWCNjEs,19513
325
+ edsl/tasks/task_status_enum.py,sha256=cQSJMcswLGdknO7tvNZBZV05T_TZV-MEBY3DxyLzTo0,9032
326
+ edsl/tasks/task_status_log.py,sha256=dbeZ5LUCJzWzBbMEIRUZKP1hjANJy7enyTiEU7hwS8w,3165
327
+ edsl/templates/error_reporting/base.html,sha256=JDOZu8tkrSgVqGwhjaYoiHXrpxisVtYWCuYi_L0WIxo,452
328
+ edsl/templates/error_reporting/exceptions_by_model.html,sha256=7uAWGfhUMey-29Vh6YkN_Qx1lfhC92fsTMxJEVXWPDs,792
329
+ edsl/templates/error_reporting/exceptions_by_question_name.html,sha256=_q6hSwtO_WhjXLZNLZhRj-qbPzStqYSzT0iECKUAFlg,454
330
+ edsl/templates/error_reporting/exceptions_by_type.html,sha256=TVsNCAz_G53LSZ-YslM51TUsbwtw7wzCqPwVYO6TVEw,415
331
+ edsl/templates/error_reporting/exceptions_table.html,sha256=WLm9ASdp-1yfltnsCr3pZJOu0mgiNpdVybri38GTyd0,1054
332
+ edsl/templates/error_reporting/interview_details.html,sha256=su73Spc7EyOvByVCAmow0c4_52cPATjRyBJzyL5yzZk,4473
333
+ edsl/templates/error_reporting/interviews.html,sha256=wn0oIIyn0UPhhsQdhoES6Zr6D0omzDlwatIUzZfasbU,193
334
+ edsl/templates/error_reporting/overview.html,sha256=VYusb0r4PGHB6bDMyqceToD7IFtyCzmX4aG763WKTn4,627
335
+ edsl/templates/error_reporting/performance_plot.html,sha256=VjCW-ONEtUqyOCCt3SZGONHF9DQ1jCvqE99BlvBSgH8,62
336
+ edsl/templates/error_reporting/report.css,sha256=LsnxkdEy_eHKSgmV50NSMNcCPPNcwJ9xFeMtNdvwIaY,1209
337
+ edsl/templates/error_reporting/report.html,sha256=CWygdoBM-QXNI8HtqaQMfzspMSn4lUVRTXf6NA9ggqo,4523
338
+ edsl/templates/error_reporting/report.js,sha256=PtF1N68RmSYB2OG-6ymO14-LcX7LUZTnUDFX0dN6xW4,957
339
+ edsl/tokens/__init__.py,sha256=FjCADh2sQwKrSudC6T0On95RWNm7oZ2AAX-qutjcGtU,139
340
+ edsl/tokens/interview_token_usage.py,sha256=8umcj_TTlz88B74OFKq_TBNdRBpalTBw5dstEGIfDvY,1905
341
+ edsl/tokens/token_usage.py,sha256=PSrFiTSDPDotBWUMJsTHA9FqzJLkFxAWKZX9ZZqaUNE,1322
342
+ edsl/utilities/PrettyList.py,sha256=BW1nlqNzk7XJjTopSJHSj4uC35A6GnaEeg3LdpO8JfE,2041
343
+ edsl/utilities/SystemInfo.py,sha256=w0Gi9KvWK6JSNqs457GE9yGg39rMlUv3kyXhduY513w,955
344
+ edsl/utilities/__init__.py,sha256=f7aoNf12qH1YzyjfoLKssm32v3UksxEI3-6vtUFhYiw,1242
345
+ edsl/utilities/ast_utilities.py,sha256=49KDDu-PHYpzDN5cCaDf-ReQH-1dzjT5EG3WVSa8THk,868
346
+ edsl/utilities/decorators.py,sha256=cVsNzo5R1CYBKexNyYGkKu3b17Y_jh71xOCbd58Y-Is,2318
347
+ edsl/utilities/gcp_bucket/__init__.py,sha256=EDChQBc3k_8H8C0JPtxgLlqu87fm-kzLw3oBCNjcj3A,65
348
+ edsl/utilities/gcp_bucket/cloud_storage.py,sha256=0PLbS49wkO2tXoyvOehf0odXy14_QfTEYlxAX01Qu3A,3753
349
+ edsl/utilities/is_notebook.py,sha256=UAT8LXl7oh2qvUnOWQ5QvO1wDno385a8hHMuPZuYGT8,713
350
+ edsl/utilities/is_valid_variable_name.py,sha256=k_CEkw2rDjNykx1wBTLYkjzkTZI-3fK9xJlTQggX5nk,332
351
+ edsl/utilities/markdown_to_docx.py,sha256=_z5Q0gqzW11mpjyDgH9Zsm8lo9frAGifv3KN9fobqxo,4105
352
+ edsl/utilities/markdown_to_pdf.py,sha256=ATYrmGMzAw5Xblh8dB7NhBeEHvxhlLotJx3JJ0b0v-s,3770
353
+ edsl/utilities/naming_utilities.py,sha256=ZIxEe8nX0ZCpcZ14QjnnxBxQ0UBSiNZp6RqC7-gvUCw,4966
354
+ edsl/utilities/remove_edsl_version.py,sha256=3n2RoXvZ4pH3k-_lc7B-vkeUyHXHX6vKHQStRn5SFpQ,762
355
+ edsl/utilities/repair_functions.py,sha256=EXkXsqnmgPqj9b3dff1cZnJyaZw-qEvGENXCRHeO-ys,881
356
+ edsl/utilities/restricted_python.py,sha256=248N2p5EWHDSpcK1G-q7DUoJeWy4sB6aO-RV0-5O7uY,2038
357
+ edsl/utilities/template_loader.py,sha256=SCAcnTnxNQ67MNSkmfz7F-S_u2peyGn2j1oRIqi1wfg,870
358
+ edsl/utilities/utilities.py,sha256=irHheAGOnl_6RwI--Hi9StVzvsHcWCqB48PWsWJQYOw,12045
359
+ edsl-0.1.50.dist-info/LICENSE,sha256=_qszBDs8KHShVYcYzdMz3HNMtH-fKN_p5zjoVAVumFc,1111
360
+ edsl-0.1.50.dist-info/METADATA,sha256=5PBVzh8LeJdurnErt8vc2ENpevFQoYF_pRbzZT09wlo,12670
361
+ edsl-0.1.50.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
362
+ edsl-0.1.50.dist-info/entry_points.txt,sha256=JnG7xqMtHaQu9BU-yPATxdyCeA48XJpuclnWCqMfIMU,38
363
+ edsl-0.1.50.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ edsl=edsl.cli:main
3
+
@@ -1,96 +0,0 @@
1
- from typing import Optional
2
-
3
-
4
- class SmartInt(int):
5
- pass
6
-
7
-
8
- class SmartFloat(float):
9
- pass
10
-
11
-
12
- class SmartStr(str):
13
- def clipboard(self) -> None:
14
- try:
15
- import pyperclip
16
- except ImportError:
17
- print(
18
- "pyperclip is not installed. Run `pip install pyperclip` to install it."
19
- )
20
- return None
21
-
22
- pyperclip.copy(self)
23
- print("Text copied to clipboard.")
24
-
25
- def write(self, filename: str):
26
- with open(filename, "w") as f:
27
- f.write(str(self))
28
- return None
29
-
30
- def _repr_html_(self):
31
- pass
32
-
33
- def markdown(self):
34
- return SmartMarkdown(self)
35
-
36
- def pdf(self, filename: Optional[str] = None): # Markdown will have this as well
37
- # renders the markdown as a pdf that can be downloaded
38
- from ..utilities.markdown_to_pdf import MarkdownToPDF
39
-
40
- return MarkdownToPDF(self, filename).preview()
41
-
42
- def docx(self, filename: Optional[str] = None):
43
- # renders the markdown as a docx that can be downloaded
44
- from ..utilities.markdown_to_docx import MarkdownToDocx
45
-
46
- return MarkdownToDocx(self, filename).preview()
47
-
48
- def edit(self):
49
- from edsl.results.TextEditor import TextEditor
50
-
51
- editor = TextEditor(self)
52
- self = self.__class__(editor.edit_gui())
53
- # print(f"Updated text: {self}")
54
-
55
-
56
- class SmartMarkdown(SmartStr):
57
- def _repr_markdown_(self):
58
- return self
59
-
60
- def _repr_html_(self):
61
- from IPython.display import Markdown, display
62
-
63
- display(Markdown(self))
64
-
65
-
66
- class SmartLaTeX(SmartStr):
67
- def _repr_html_(self):
68
- print(self)
69
-
70
- def pdf(self, filename: Optional[str] = None):
71
- from edsl.results.LaTeXToPDF import LaTeXToPDF
72
-
73
- return LaTeXToPDF(self, filename).preview()
74
-
75
- def docx(self, filename: Optional[str] = None):
76
- from edsl.results.LaTeXToDocx import LaTeXToDocx
77
-
78
- return LaTeXToDocx(self, filename).preview()
79
-
80
- def edit(self):
81
- from edsl.results.TextEditor import TextEditor
82
-
83
- editor = TextEditor(self)
84
- self = self.__class__(editor.edit_gui())
85
- # print(f"Updated LaTeX: {self}")
86
-
87
-
88
- class FirstObject:
89
- def __new__(self, value):
90
- if isinstance(value, int):
91
- return SmartInt(value)
92
- if isinstance(value, float):
93
- return SmartFloat(value)
94
- if isinstance(value, str):
95
- return SmartStr(value)
96
- return value
@@ -1,21 +0,0 @@
1
- class BaseException(Exception):
2
- relevant_doc = "https://docs.expectedparrot.com/"
3
-
4
- def __init__(self, message, *, show_docs=True):
5
- # Format main error message
6
- formatted_message = [message.strip()]
7
-
8
- # Add documentation links if requested
9
- if show_docs:
10
- if hasattr(self, "relevant_doc"):
11
- formatted_message.append(
12
- f"\nFor more information, see:\n{self.relevant_doc}"
13
- )
14
- if hasattr(self, "relevant_notebook"):
15
- formatted_message.append(
16
- f"\nFor a usage example, see:\n{self.relevant_notebook}"
17
- )
18
-
19
- # Join with double newlines for clear separation
20
- final_message = "\n\n".join(formatted_message)
21
- super().__init__(final_message)
@@ -1,54 +0,0 @@
1
- # from .agents import (
2
- # # AgentAttributeLookupCallbackError,
3
- # AgentCombinationError,
4
- # # AgentLacksLLMError,
5
- # # AgentRespondedWithBadJSONError,
6
- # )
7
- # from .configuration import (
8
- # InvalidEnvironmentVariableError,
9
- # MissingEnvironmentVariableError,
10
- # )
11
- # from .data import (
12
- # DatabaseConnectionError,
13
- # DatabaseCRUDError,
14
- # DatabaseIntegrityError,
15
- # )
16
-
17
- # from .scenarios import (
18
- # ScenarioError,
19
- # )
20
-
21
- # from .general import MissingAPIKeyError
22
-
23
- # from .jobs import JobsRunError, InterviewErrorPriorTaskCanceled, InterviewTimeoutError
24
-
25
- # from .language_models import (
26
- # LanguageModelResponseNotJSONError,
27
- # LanguageModelMissingAttributeError,
28
- # LanguageModelAttributeTypeError,
29
- # LanguageModelDoNotAddError,
30
- # )
31
- # from .questions import (
32
- # QuestionAnswerValidationError,
33
- # QuestionAttributeMissing,
34
- # QuestionCreationValidationError,
35
- # QuestionResponseValidationError,
36
- # QuestionSerializationError,
37
- # QuestionScenarioRenderError,
38
- # )
39
- # from .results import (
40
- # ResultsBadMutationstringError,
41
- # ResultsColumnNotFoundError,
42
- # ResultsInvalidNameError,
43
- # ResultsMutateError,
44
- # )
45
- # from .surveys import (
46
- # SurveyCreationError,
47
- # SurveyHasNoRulesError,
48
- # SurveyRuleCannotEvaluateError,
49
- # SurveyRuleCollectionHasNoRulesAtNodeError,
50
- # SurveyRuleReferenceInRuleToUnknownQuestionError,
51
- # SurveyRuleRefersToFutureStateError,
52
- # SurveyRuleSendsYouBackwardsError,
53
- # SurveyRuleSkipLogicSyntaxError,
54
- # )
@@ -1,16 +0,0 @@
1
- class ConfigurationError(Exception):
2
- """Base exception for errors."""
3
-
4
- pass
5
-
6
-
7
- class InvalidEnvironmentVariableError(ConfigurationError):
8
- """Raised when an environment variable is invalid."""
9
-
10
- pass
11
-
12
-
13
- class MissingEnvironmentVariableError(ConfigurationError):
14
- """Raised when an expected environment variable is missing."""
15
-
16
- pass
@@ -1,34 +0,0 @@
1
- import re
2
- from textwrap import dedent
3
-
4
-
5
- class GeneralErrors(Exception):
6
- def __init__(self, message):
7
- super().__init__(message)
8
- self.message = message
9
-
10
- def __str__(self):
11
- return self.make_urls_clickable(self.message)
12
-
13
- @staticmethod
14
- def make_urls_clickable(text):
15
- url_pattern = r"https?://[^\s]+"
16
- urls = re.findall(url_pattern, text)
17
- for url in urls:
18
- clickable_url = f"\033]8;;{url}\007{url}\033]8;;\007"
19
- text = text.replace(url, clickable_url)
20
- return text
21
-
22
-
23
- class MissingAPIKeyError(GeneralErrors):
24
- def __init__(self, full_message=None, model_name=None, inference_service=None):
25
- if model_name and inference_service:
26
- full_message = dedent(
27
- f"""
28
- An API Key for model `{model_name}` is missing from the .env file.
29
- This key is associated with the inference service `{inference_service}`.
30
- Please see https://docs.expectedparrot.com/en/latest/api_keys.html for more information.
31
- """
32
- )
33
-
34
- super().__init__(full_message)