edsl 0.1.37__py3-none-any.whl → 0.1.37.dev3__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 (261) hide show
  1. edsl/Base.py +303 -303
  2. edsl/BaseDiff.py +260 -260
  3. edsl/TemplateLoader.py +24 -24
  4. edsl/__init__.py +48 -48
  5. edsl/__version__.py +1 -1
  6. edsl/agents/Agent.py +804 -855
  7. edsl/agents/AgentList.py +345 -350
  8. edsl/agents/Invigilator.py +222 -222
  9. edsl/agents/InvigilatorBase.py +305 -284
  10. edsl/agents/PromptConstructor.py +312 -353
  11. edsl/agents/__init__.py +3 -3
  12. edsl/agents/descriptors.py +86 -99
  13. edsl/agents/prompt_helpers.py +129 -129
  14. edsl/auto/AutoStudy.py +117 -117
  15. edsl/auto/StageBase.py +230 -230
  16. edsl/auto/StageGenerateSurvey.py +178 -178
  17. edsl/auto/StageLabelQuestions.py +125 -125
  18. edsl/auto/StagePersona.py +61 -61
  19. edsl/auto/StagePersonaDimensionValueRanges.py +88 -88
  20. edsl/auto/StagePersonaDimensionValues.py +74 -74
  21. edsl/auto/StagePersonaDimensions.py +69 -69
  22. edsl/auto/StageQuestions.py +73 -73
  23. edsl/auto/SurveyCreatorPipeline.py +21 -21
  24. edsl/auto/utilities.py +224 -224
  25. edsl/base/Base.py +289 -289
  26. edsl/config.py +149 -149
  27. edsl/conjure/AgentConstructionMixin.py +152 -160
  28. edsl/conjure/Conjure.py +62 -62
  29. edsl/conjure/InputData.py +659 -659
  30. edsl/conjure/InputDataCSV.py +48 -48
  31. edsl/conjure/InputDataMixinQuestionStats.py +182 -182
  32. edsl/conjure/InputDataPyRead.py +91 -91
  33. edsl/conjure/InputDataSPSS.py +8 -8
  34. edsl/conjure/InputDataStata.py +8 -8
  35. edsl/conjure/QuestionOptionMixin.py +76 -76
  36. edsl/conjure/QuestionTypeMixin.py +23 -23
  37. edsl/conjure/RawQuestion.py +65 -65
  38. edsl/conjure/SurveyResponses.py +7 -7
  39. edsl/conjure/__init__.py +9 -9
  40. edsl/conjure/naming_utilities.py +263 -263
  41. edsl/conjure/utilities.py +201 -201
  42. edsl/conversation/Conversation.py +238 -290
  43. edsl/conversation/car_buying.py +58 -58
  44. edsl/conversation/mug_negotiation.py +81 -81
  45. edsl/conversation/next_speaker_utilities.py +93 -93
  46. edsl/coop/PriceFetcher.py +54 -54
  47. edsl/coop/__init__.py +2 -2
  48. edsl/coop/coop.py +824 -958
  49. edsl/coop/utils.py +131 -131
  50. edsl/data/Cache.py +527 -527
  51. edsl/data/CacheEntry.py +228 -228
  52. edsl/data/CacheHandler.py +149 -149
  53. edsl/data/RemoteCacheSync.py +97 -97
  54. edsl/data/SQLiteDict.py +292 -292
  55. edsl/data/__init__.py +4 -4
  56. edsl/data/orm.py +10 -10
  57. edsl/data_transfer_models.py +73 -73
  58. edsl/enums.py +173 -173
  59. edsl/exceptions/__init__.py +50 -54
  60. edsl/exceptions/agents.py +40 -38
  61. edsl/exceptions/configuration.py +16 -16
  62. edsl/exceptions/coop.py +10 -10
  63. edsl/exceptions/data.py +14 -14
  64. edsl/exceptions/general.py +34 -34
  65. edsl/exceptions/jobs.py +33 -33
  66. edsl/exceptions/language_models.py +63 -63
  67. edsl/exceptions/prompts.py +15 -15
  68. edsl/exceptions/questions.py +91 -91
  69. edsl/exceptions/results.py +26 -29
  70. edsl/exceptions/surveys.py +34 -37
  71. edsl/inference_services/AnthropicService.py +87 -87
  72. edsl/inference_services/AwsBedrock.py +115 -120
  73. edsl/inference_services/AzureAI.py +217 -217
  74. edsl/inference_services/DeepInfraService.py +18 -18
  75. edsl/inference_services/GoogleService.py +156 -156
  76. edsl/inference_services/GroqService.py +20 -20
  77. edsl/inference_services/InferenceServiceABC.py +147 -147
  78. edsl/inference_services/InferenceServicesCollection.py +74 -97
  79. edsl/inference_services/MistralAIService.py +123 -123
  80. edsl/inference_services/OllamaService.py +18 -18
  81. edsl/inference_services/OpenAIService.py +224 -224
  82. edsl/inference_services/TestService.py +89 -89
  83. edsl/inference_services/TogetherAIService.py +170 -170
  84. edsl/inference_services/models_available_cache.py +118 -118
  85. edsl/inference_services/rate_limits_cache.py +25 -25
  86. edsl/inference_services/registry.py +39 -39
  87. edsl/inference_services/write_available.py +10 -10
  88. edsl/jobs/Answers.py +56 -56
  89. edsl/jobs/Jobs.py +1121 -1347
  90. edsl/jobs/__init__.py +1 -1
  91. edsl/jobs/buckets/BucketCollection.py +63 -63
  92. edsl/jobs/buckets/ModelBuckets.py +65 -65
  93. edsl/jobs/buckets/TokenBucket.py +248 -248
  94. edsl/jobs/interviews/Interview.py +661 -661
  95. edsl/jobs/interviews/InterviewExceptionCollection.py +99 -99
  96. edsl/jobs/interviews/InterviewExceptionEntry.py +182 -186
  97. edsl/jobs/interviews/InterviewStatistic.py +63 -63
  98. edsl/jobs/interviews/InterviewStatisticsCollection.py +25 -25
  99. edsl/jobs/interviews/InterviewStatusDictionary.py +78 -78
  100. edsl/jobs/interviews/InterviewStatusLog.py +92 -92
  101. edsl/jobs/interviews/ReportErrors.py +66 -66
  102. edsl/jobs/interviews/interview_status_enum.py +9 -9
  103. edsl/jobs/runners/JobsRunnerAsyncio.py +338 -338
  104. edsl/jobs/runners/JobsRunnerStatus.py +332 -332
  105. edsl/jobs/tasks/QuestionTaskCreator.py +242 -242
  106. edsl/jobs/tasks/TaskCreators.py +64 -64
  107. edsl/jobs/tasks/TaskHistory.py +441 -442
  108. edsl/jobs/tasks/TaskStatusLog.py +23 -23
  109. edsl/jobs/tasks/task_status_enum.py +163 -163
  110. edsl/jobs/tokens/InterviewTokenUsage.py +27 -27
  111. edsl/jobs/tokens/TokenUsage.py +34 -34
  112. edsl/language_models/LanguageModel.py +718 -706
  113. edsl/language_models/ModelList.py +102 -102
  114. edsl/language_models/RegisterLanguageModelsMeta.py +184 -184
  115. edsl/language_models/__init__.py +2 -3
  116. edsl/language_models/fake_openai_call.py +15 -15
  117. edsl/language_models/fake_openai_service.py +61 -61
  118. edsl/language_models/registry.py +137 -137
  119. edsl/language_models/repair.py +156 -156
  120. edsl/language_models/unused/ReplicateBase.py +83 -83
  121. edsl/language_models/utilities.py +64 -64
  122. edsl/notebooks/Notebook.py +259 -259
  123. edsl/notebooks/__init__.py +1 -1
  124. edsl/prompts/Prompt.py +353 -357
  125. edsl/prompts/__init__.py +2 -2
  126. edsl/questions/AnswerValidatorMixin.py +289 -289
  127. edsl/questions/QuestionBase.py +616 -656
  128. edsl/questions/QuestionBaseGenMixin.py +161 -161
  129. edsl/questions/QuestionBasePromptsMixin.py +266 -234
  130. edsl/questions/QuestionBudget.py +227 -227
  131. edsl/questions/QuestionCheckBox.py +359 -359
  132. edsl/questions/QuestionExtract.py +183 -183
  133. edsl/questions/QuestionFreeText.py +114 -114
  134. edsl/questions/QuestionFunctional.py +159 -159
  135. edsl/questions/QuestionList.py +231 -231
  136. edsl/questions/QuestionMultipleChoice.py +286 -286
  137. edsl/questions/QuestionNumerical.py +153 -153
  138. edsl/questions/QuestionRank.py +324 -324
  139. edsl/questions/Quick.py +41 -41
  140. edsl/questions/RegisterQuestionsMeta.py +71 -71
  141. edsl/questions/ResponseValidatorABC.py +174 -174
  142. edsl/questions/SimpleAskMixin.py +73 -73
  143. edsl/questions/__init__.py +26 -26
  144. edsl/questions/compose_questions.py +98 -98
  145. edsl/questions/decorators.py +21 -21
  146. edsl/questions/derived/QuestionLikertFive.py +76 -76
  147. edsl/questions/derived/QuestionLinearScale.py +87 -87
  148. edsl/questions/derived/QuestionTopK.py +91 -91
  149. edsl/questions/derived/QuestionYesNo.py +82 -82
  150. edsl/questions/descriptors.py +418 -413
  151. edsl/questions/prompt_templates/question_budget.jinja +13 -13
  152. edsl/questions/prompt_templates/question_checkbox.jinja +32 -32
  153. edsl/questions/prompt_templates/question_extract.jinja +11 -11
  154. edsl/questions/prompt_templates/question_free_text.jinja +3 -3
  155. edsl/questions/prompt_templates/question_linear_scale.jinja +11 -11
  156. edsl/questions/prompt_templates/question_list.jinja +17 -17
  157. edsl/questions/prompt_templates/question_multiple_choice.jinja +33 -33
  158. edsl/questions/prompt_templates/question_numerical.jinja +36 -36
  159. edsl/questions/question_registry.py +147 -147
  160. edsl/questions/settings.py +12 -12
  161. edsl/questions/templates/budget/answering_instructions.jinja +7 -7
  162. edsl/questions/templates/budget/question_presentation.jinja +7 -7
  163. edsl/questions/templates/checkbox/answering_instructions.jinja +10 -10
  164. edsl/questions/templates/checkbox/question_presentation.jinja +22 -22
  165. edsl/questions/templates/extract/answering_instructions.jinja +7 -7
  166. edsl/questions/templates/likert_five/answering_instructions.jinja +10 -10
  167. edsl/questions/templates/likert_five/question_presentation.jinja +11 -11
  168. edsl/questions/templates/linear_scale/answering_instructions.jinja +5 -5
  169. edsl/questions/templates/linear_scale/question_presentation.jinja +5 -5
  170. edsl/questions/templates/list/answering_instructions.jinja +3 -3
  171. edsl/questions/templates/list/question_presentation.jinja +5 -5
  172. edsl/questions/templates/multiple_choice/answering_instructions.jinja +9 -9
  173. edsl/questions/templates/multiple_choice/question_presentation.jinja +11 -11
  174. edsl/questions/templates/numerical/answering_instructions.jinja +6 -6
  175. edsl/questions/templates/numerical/question_presentation.jinja +6 -6
  176. edsl/questions/templates/rank/answering_instructions.jinja +11 -11
  177. edsl/questions/templates/rank/question_presentation.jinja +15 -15
  178. edsl/questions/templates/top_k/answering_instructions.jinja +8 -8
  179. edsl/questions/templates/top_k/question_presentation.jinja +22 -22
  180. edsl/questions/templates/yes_no/answering_instructions.jinja +6 -6
  181. edsl/questions/templates/yes_no/question_presentation.jinja +11 -11
  182. edsl/results/Dataset.py +293 -293
  183. edsl/results/DatasetExportMixin.py +693 -717
  184. edsl/results/DatasetTree.py +145 -145
  185. edsl/results/Result.py +435 -450
  186. edsl/results/Results.py +1160 -1071
  187. edsl/results/ResultsDBMixin.py +238 -238
  188. edsl/results/ResultsExportMixin.py +43 -43
  189. edsl/results/ResultsFetchMixin.py +33 -33
  190. edsl/results/ResultsGGMixin.py +121 -121
  191. edsl/results/ResultsToolsMixin.py +98 -98
  192. edsl/results/Selector.py +118 -135
  193. edsl/results/__init__.py +2 -2
  194. edsl/results/tree_explore.py +115 -115
  195. edsl/scenarios/FileStore.py +458 -458
  196. edsl/scenarios/Scenario.py +510 -546
  197. edsl/scenarios/ScenarioHtmlMixin.py +59 -64
  198. edsl/scenarios/ScenarioList.py +1101 -1112
  199. edsl/scenarios/ScenarioListExportMixin.py +52 -52
  200. edsl/scenarios/ScenarioListPdfMixin.py +261 -261
  201. edsl/scenarios/__init__.py +4 -4
  202. edsl/shared.py +1 -1
  203. edsl/study/ObjectEntry.py +173 -173
  204. edsl/study/ProofOfWork.py +113 -113
  205. edsl/study/SnapShot.py +80 -80
  206. edsl/study/Study.py +528 -528
  207. edsl/study/__init__.py +4 -4
  208. edsl/surveys/DAG.py +148 -148
  209. edsl/surveys/Memory.py +31 -31
  210. edsl/surveys/MemoryPlan.py +244 -244
  211. edsl/surveys/Rule.py +324 -330
  212. edsl/surveys/RuleCollection.py +387 -387
  213. edsl/surveys/Survey.py +1772 -1795
  214. edsl/surveys/SurveyCSS.py +261 -261
  215. edsl/surveys/SurveyExportMixin.py +259 -259
  216. edsl/surveys/SurveyFlowVisualizationMixin.py +121 -121
  217. edsl/surveys/SurveyQualtricsImport.py +284 -284
  218. edsl/surveys/__init__.py +3 -3
  219. edsl/surveys/base.py +53 -53
  220. edsl/surveys/descriptors.py +56 -56
  221. edsl/surveys/instructions/ChangeInstruction.py +47 -47
  222. edsl/surveys/instructions/Instruction.py +51 -51
  223. edsl/surveys/instructions/InstructionCollection.py +77 -77
  224. edsl/templates/error_reporting/base.html +23 -23
  225. edsl/templates/error_reporting/exceptions_by_model.html +34 -34
  226. edsl/templates/error_reporting/exceptions_by_question_name.html +16 -16
  227. edsl/templates/error_reporting/exceptions_by_type.html +16 -16
  228. edsl/templates/error_reporting/interview_details.html +115 -115
  229. edsl/templates/error_reporting/interviews.html +9 -9
  230. edsl/templates/error_reporting/overview.html +4 -4
  231. edsl/templates/error_reporting/performance_plot.html +1 -1
  232. edsl/templates/error_reporting/report.css +73 -73
  233. edsl/templates/error_reporting/report.html +117 -117
  234. edsl/templates/error_reporting/report.js +25 -25
  235. edsl/tools/__init__.py +1 -1
  236. edsl/tools/clusters.py +192 -192
  237. edsl/tools/embeddings.py +27 -27
  238. edsl/tools/embeddings_plotting.py +118 -118
  239. edsl/tools/plotting.py +112 -112
  240. edsl/tools/summarize.py +18 -18
  241. edsl/utilities/SystemInfo.py +28 -28
  242. edsl/utilities/__init__.py +22 -22
  243. edsl/utilities/ast_utilities.py +25 -25
  244. edsl/utilities/data/Registry.py +6 -6
  245. edsl/utilities/data/__init__.py +1 -1
  246. edsl/utilities/data/scooter_results.json +1 -1
  247. edsl/utilities/decorators.py +77 -77
  248. edsl/utilities/gcp_bucket/cloud_storage.py +96 -96
  249. edsl/utilities/interface.py +627 -627
  250. edsl/utilities/repair_functions.py +28 -28
  251. edsl/utilities/restricted_python.py +70 -70
  252. edsl/utilities/utilities.py +391 -409
  253. {edsl-0.1.37.dist-info → edsl-0.1.37.dev3.dist-info}/LICENSE +21 -21
  254. {edsl-0.1.37.dist-info → edsl-0.1.37.dev3.dist-info}/METADATA +1 -1
  255. edsl-0.1.37.dev3.dist-info/RECORD +279 -0
  256. edsl/conversation/chips.py +0 -95
  257. edsl/exceptions/BaseException.py +0 -21
  258. edsl/exceptions/scenarios.py +0 -22
  259. edsl/language_models/KeyLookup.py +0 -30
  260. edsl-0.1.37.dist-info/RECORD +0 -283
  261. {edsl-0.1.37.dist-info → edsl-0.1.37.dev3.dist-info}/WHEEL +0 -0
@@ -1,21 +1,21 @@
1
- The MIT License
2
-
3
- Copyright (c) Apostolos Filippas, John Joseph Horton, Roberta Horton.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
1
+ The MIT License
2
+
3
+ Copyright (c) Apostolos Filippas, John Joseph Horton, Roberta Horton.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: edsl
3
- Version: 0.1.37
3
+ Version: 0.1.37.dev3
4
4
  Summary: Create and analyze LLM-based surveys
5
5
  Home-page: https://www.expectedparrot.com/
6
6
  License: MIT
@@ -0,0 +1,279 @@
1
+ edsl/__init__.py,sha256=Xc4AuXpEALuT7khU4CFgvV_WI9elsQ28w5RuyVx8MME,1865
2
+ edsl/__version__.py,sha256=A3QLK8TySf0DLI2iYA29bIFRb2fHl1LUTU3Rz_zq6fc,29
3
+ edsl/agents/__init__.py,sha256=Jw2EmdckbcROk_4tRPcJ2i-YEutApOs8BCohy3IHzqY,139
4
+ edsl/agents/Agent.py,sha256=Eoo4ixztM2abxMjYzLdYDNx95XIvtGuiQAMN2Ue5EwE,30258
5
+ edsl/agents/AgentList.py,sha256=VeCP_Hpk5jJ5Z5-9eYhHLtSEviOz4C_oFQBkU5DUBqs,11799
6
+ edsl/agents/descriptors.py,sha256=Qj-G_ZgfFJFc8wPGz4-Aae4hpL4XRBvxPEeewfaUWv4,3020
7
+ edsl/agents/Invigilator.py,sha256=FTGgnXAEn1oTWQHHeZ32Rq4t7qgX01XZoYhVKsqWQE8,9302
8
+ edsl/agents/InvigilatorBase.py,sha256=B9Dx3Vw4JxOJf-eF5xxZWAms5BJMdF7rzxkoyJQAyvI,11006
9
+ edsl/agents/prompt_helpers.py,sha256=oBuv6vWyP3na8qmBV_uYMB2Aq0_FEHzCYFhpEzt8leE,5152
10
+ edsl/agents/PromptConstructor.py,sha256=7SIcdBS7zAip6cqkNbWNp8qhw49FEUEmj7pCK98loUU,13612
11
+ edsl/auto/AutoStudy.py,sha256=bUhIvpDzQdYgDpAc8jCpNdCh6cI6brdJU8DaoScxkTo,3960
12
+ edsl/auto/StageBase.py,sha256=BUcIdH5O2nsoSjlNyBM61dGTnKV-09N6-5HO0ykmbTU,8163
13
+ edsl/auto/StageGenerateSurvey.py,sha256=4xe7PVTXSP-i3O9NSmX-an2OkRoyxCBygWaT-nslBsA,7572
14
+ edsl/auto/StageLabelQuestions.py,sha256=1QSkI-eZALNsPdqkuna6jfLC4unqQ8sQMI-UTFo9ugA,4788
15
+ edsl/auto/StagePersona.py,sha256=XF2mmIZIXQzCUD38VD0N_zsvo6IhDhoAh3sq1PArFK8,1947
16
+ edsl/auto/StagePersonaDimensions.py,sha256=dmggym7c1DpRoIKnJ688CUIUteETB2opHCS791O7pW8,2138
17
+ edsl/auto/StagePersonaDimensionValueRanges.py,sha256=sOzULRQ3jSlx2Aur2PbLUjG3We7p9kUw_I_yVSiOBKk,3021
18
+ edsl/auto/StagePersonaDimensionValues.py,sha256=WcYqgKdGVhYScLoMu-_5aChy7aWGa5xvXjG3txV2fWo,2387
19
+ edsl/auto/StageQuestions.py,sha256=BKluv3d_fs8EoZgkuC0RnBJEAsmmvs5arwS_y2wp9wY,2271
20
+ edsl/auto/SurveyCreatorPipeline.py,sha256=V10oIcnbqiiKfeqZTXyoBPvj0zhtYYIgZ7_Lnax2cp8,679
21
+ edsl/auto/utilities.py,sha256=xGlethh1CxjWWiRWniobLHma6NAtQp4DgjkDSt78MHI,7830
22
+ edsl/base/Base.py,sha256=4-kIs4Z7e_xBCC9bdQNbevA8SZDcniz7micLty6V9hk,9155
23
+ edsl/Base.py,sha256=MJxhS6n4HVXcQuOV3j5O9dAjUdYASq9aLgPlTW9SqxY,9736
24
+ edsl/BaseDiff.py,sha256=h2NU0EEHY3ccnLbSBGHGxPXpISNpWcBgnigK7pf86rA,8520
25
+ edsl/config.py,sha256=v-YghDlA7V28YTXAtQP76rJdlqMfDlTloXCotGlayIk,6024
26
+ edsl/conjure/__init__.py,sha256=P61x6MwIOezmFV69e1KfNAh2rH5XcEIUbrKEZq2vvEg,544
27
+ edsl/conjure/AgentConstructionMixin.py,sha256=X_fqoXnnsAs28wf2npXoJr8wGoq3DxiOs0PP8EsgFd0,5854
28
+ edsl/conjure/Conjure.py,sha256=_y26Wz8Xxb_HVbsAhIkEx00bmNc29mI60xB7CdmTc5A,2081
29
+ edsl/conjure/examples/placeholder.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
+ edsl/conjure/InputData.py,sha256=LuGs75DK7AD3Wt_TlXOgUxHNHansOUc6o9xBYmluDEA,22662
31
+ edsl/conjure/InputDataCSV.py,sha256=WakIJ5aRsDoAWVuHYcZubc9P1psxRYQdgMMmiDfNc2o,1732
32
+ edsl/conjure/InputDataMixinQuestionStats.py,sha256=IMCCw1oBNEMnHIS089LhJeLoq9PThC-lJH_69tpmbho,6438
33
+ edsl/conjure/InputDataPyRead.py,sha256=HJhrj-gDl-02JIVs7p9QgO2thYbobGkKlSb3QZwXwR8,3155
34
+ edsl/conjure/InputDataSPSS.py,sha256=SOYvvGg_A4wOQv9cDOO9Jkzj6u-EctUiHE3mb2You_M,231
35
+ edsl/conjure/InputDataStata.py,sha256=E3wOzD855CAStz14R5_04aPpqOomDAvjhUPAl2-ijMA,232
36
+ edsl/conjure/naming_utilities.py,sha256=nDUozWY8Fey6SAB7wdIaQVtVJVEn-aSBU6VNbOk0nIY,5227
37
+ edsl/conjure/QuestionOptionMixin.py,sha256=jiFXYHxQv8XfHlRbzKPtpMamcweZQlJVaz2JBSzFsp8,2946
38
+ edsl/conjure/QuestionTypeMixin.py,sha256=6JCU3s8SW0EPDabcz4oi3M1BolWpDdBrPeIb_ECWD0Q,915
39
+ edsl/conjure/RawQuestion.py,sha256=jRlnuSq5Wa9wtmlocSAyCC6gLXe_3zOWtOCpyUjL0Is,2181
40
+ edsl/conjure/SurveyResponses.py,sha256=_qvRhInlXovVLU4TEzouQ2HvZeYlCvUPaElC9MxvEbg,198
41
+ edsl/conjure/utilities.py,sha256=kFj8mp69fTRYmk-9GX43bRF5Y3HvnBkz4xLcPQPTCI4,5740
42
+ edsl/conversation/car_buying.py,sha256=cY2y7wGiZiXWsat0F0Bh6MJBfVxcuKlZIMlJSpmTbH8,2008
43
+ edsl/conversation/Conversation.py,sha256=al29DNlKb1QnO1pHN6pAxNSilSrWPbcClySswjQ4nL4,7871
44
+ edsl/conversation/mug_negotiation.py,sha256=WhdhN6dCiZ8bvpptudEnIEObkUQuy4y52-ysQSPuk54,2697
45
+ edsl/conversation/next_speaker_utilities.py,sha256=EpGlZ_J9-vSNzezpngC58EFCfxOoN8tZ3DHBKcT3h80,3722
46
+ edsl/coop/__init__.py,sha256=XqMfFaHIeyAb_dfDw7VaKf6wCPdahh19ye4w6XAY3R4,117
47
+ edsl/coop/coop.py,sha256=2RFa72XKmnP6GBvNIMG7StUmQgHjQNrtwoRLAKkmqR8,29942
48
+ edsl/coop/PriceFetcher.py,sha256=CALznFyhdyiOylBuZFPfWg66iNVGG_q72CQMGCicfxU,1824
49
+ edsl/coop/utils.py,sha256=r3FKAsNYnJ_bTTDKrq_TDubJrXnbW5lN3JzNExYHzuM,3732
50
+ edsl/data/__init__.py,sha256=LW9OLfpkTtUZFpAnB-_E72dXdhsOew53BbcgYlDcU6A,174
51
+ edsl/data/Cache.py,sha256=99XTGcm6uSV8-0rQxQ7QXLCZSSHt8xhHEvcffxLlnLY,17063
52
+ edsl/data/CacheEntry.py,sha256=tmb-sxIT8KYG-fvwbBf-qZA85VR3y3HX9m8AXPzhoeo,7480
53
+ edsl/data/CacheHandler.py,sha256=z2qPvL4iMLjcoTek_WrwJ416qMBQtUK5XIZ16QMqjsw,4942
54
+ edsl/data/orm.py,sha256=NbFg8cZPUGQWlv7DJQ77NCTEdhV361XEvqLGUZGWavY,248
55
+ edsl/data/RemoteCacheSync.py,sha256=dDOPC0kqAcuaeQKNL8DretAB5NiZnt0ZeT2YY20EU3Q,3725
56
+ edsl/data/SQLiteDict.py,sha256=ksUt6z6THDnv1GrffUSbuKXWBFR3K2oHCqX7IPRjn4Q,9271
57
+ edsl/data_transfer_models.py,sha256=yUz0rWlC7tMIiSoRzaOPUFB0G_JTURtQC4JrnM2-8Qk,2024
58
+ edsl/enums.py,sha256=DoCOnZGagM-2y6nSk1DBncvHgD2TbLYVyjvTuB7L8Ts,5420
59
+ edsl/exceptions/__init__.py,sha256=DuT0ix_Z6qbqsWqD11pQ0k35oyyXIZZUxaFZMYm3Tog,1420
60
+ edsl/exceptions/agents.py,sha256=jot6tjIrnPSbz6NYQ4VGcq8AVu-aY0gIH5HXn8H_OQs,713
61
+ edsl/exceptions/configuration.py,sha256=-LABNiw__bGvMER6iSaQpm_mLgwFCcz4qzwNgROtipU,367
62
+ edsl/exceptions/coop.py,sha256=-hzXQgUtCNdo91DgGO-zXrJC-4loE4NuPwCNvOhOKYs,148
63
+ edsl/exceptions/data.py,sha256=UTYecRpjOar6n4HuE0oDxHYhzkDNf7twIsB6v01kDxc,223
64
+ edsl/exceptions/general.py,sha256=jiwNKeI0o7pVcEB5_vrNv3KzPhO860xcnthRgIydlJs,1148
65
+ edsl/exceptions/jobs.py,sha256=TV0BFLstkINj3ASa1HfqLicKfloVfc3mA8fDQaoq9_w,836
66
+ edsl/exceptions/language_models.py,sha256=KWcukaP6-07kG9XLJebaLfI6AGrgcNPLOiTRk70r-ss,1877
67
+ edsl/exceptions/prompts.py,sha256=Amg8wbzVMN-8JeqQcCFsHdZKsohzejb-YBEUmrz1mb8,262
68
+ edsl/exceptions/questions.py,sha256=k4zat-LP1e5TYGxjK0dKRQNfta8geW7of--HIrzGYd4,2600
69
+ edsl/exceptions/results.py,sha256=E0xOzjPKTLH3wXeudl5jUJ352vh4KL4jV0K_tYyT_HY,412
70
+ edsl/exceptions/surveys.py,sha256=D1MQzGwhZbDEqcBtgyVnVbsnn5qCZ_gsdfS8In0MsuY,591
71
+ edsl/inference_services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
+ edsl/inference_services/AnthropicService.py,sha256=lm12W-vHUOByZMjz8CXuLO0vwpypI-KBumRRuWptXPo,3004
73
+ edsl/inference_services/AwsBedrock.py,sha256=54Cq7hSR9K7eAcfVL7LPSBoQJCiePZ6q4Ol5WQ-KUKM,4041
74
+ edsl/inference_services/AzureAI.py,sha256=NCjmm0yggie8HClcal7Gi_n4lTKM1QvW10uhs4L8ILY,9106
75
+ edsl/inference_services/DeepInfraService.py,sha256=OKpc9E9nyJu-mOqUHs_dBwOHh9xhDHksGfsvVwJHBf8,533
76
+ edsl/inference_services/GoogleService.py,sha256=8nQIlnKNlfP_FNtc0aZGJq1mnAW9aFnU0x8k8YMvTU4,5578
77
+ edsl/inference_services/GroqService.py,sha256=D2E6lnOjeJNSApo1_ndvHJnUUwXn4nOPmmFgt0CzTYs,530
78
+ edsl/inference_services/InferenceServiceABC.py,sha256=u5L56F9iecukMaU5KnXmEjfGipNB466aluuaQl4g3as,4841
79
+ edsl/inference_services/InferenceServicesCollection.py,sha256=Zvsimdq9GHUavZ_1WAIjuxjZ_V8iG_L7-JqLeOjFK5Q,3090
80
+ edsl/inference_services/MistralAIService.py,sha256=42nQ_yh6hZpu9zSEdm0uJxi4sQI9i5YV3p2iK7omCr4,4001
81
+ edsl/inference_services/models_available_cache.py,sha256=y159MaMtHWQd7Ia7140-dL5zSVKeHRzz1U7y7RAZtL0,4179
82
+ edsl/inference_services/OllamaService.py,sha256=ewT2SKDXnKcc4wHmMaSlVyJDA9uGLLEWcNTifnz31-g,516
83
+ edsl/inference_services/OpenAIService.py,sha256=BKEWhgfHAASn1_YDiGTX5Bg4FReEAAycyOQ_HlgKm50,7845
84
+ edsl/inference_services/rate_limits_cache.py,sha256=lJXqvZneyBvAQDq81BWUUKXmRdtgXk13klSii91m_Kw,1423
85
+ edsl/inference_services/registry.py,sha256=1YqFmiVpvg0y5YYzOdG4t42LJapKW_xS13jy2nkZ278,1279
86
+ edsl/inference_services/TestService.py,sha256=RiNvBoKN1xK-nLXloEppDZG5sl6vAlKiGj_HJjQFWvg,3098
87
+ edsl/inference_services/TogetherAIService.py,sha256=i07XMCokfg30U1yPB9eMr02ew8cxDZKFa19u8xrqi5M,6471
88
+ edsl/inference_services/write_available.py,sha256=rYDB5pT0RT7nYITAAXb-FDITTNRiyz43MiYVntnAeDk,295
89
+ edsl/jobs/__init__.py,sha256=q8D9OOwX69FBXAqkPgONsnTnk1HwJWM_YuIO8X799AA,33
90
+ edsl/jobs/Answers.py,sha256=v1aqWXwSwmra3da3JOYYzU2C1IXkAuYxcrxA4jhxqDw,1877
91
+ edsl/jobs/buckets/BucketCollection.py,sha256=X843JvQ2Ii_85Z10dpBSq5kIhyUbwTJ3e1iacyvilX8,2349
92
+ edsl/jobs/buckets/ModelBuckets.py,sha256=Lma0kQ8FvZ1FkB8PkBE2nunU27uDeMxBs1GVAbXrtmo,2484
93
+ edsl/jobs/buckets/TokenBucket.py,sha256=-Dsqrd-TdRH8WElyCv2SaWmUVMQmugEhfVpOBQeqO7w,9338
94
+ edsl/jobs/interviews/Interview.py,sha256=P4QH_-mXgoD6f2eO2aTQElI6c2srvdd4O2lJOrrIAGY,26648
95
+ edsl/jobs/interviews/interview_status_enum.py,sha256=p9Nqw2mcKqx3JMOyDQ7wQNnRkM03HVCA8YUPmKaRBrU,238
96
+ edsl/jobs/interviews/InterviewExceptionCollection.py,sha256=bswnDHRMGK0Gi2PpOWcf6hHd27TK3Dq6-DRqrB6T-vA,3765
97
+ edsl/jobs/interviews/InterviewExceptionEntry.py,sha256=Oc0JtVTxoUcVBDA-0vi8lT0hRL9Kv2cBxO5OGdAvMAk,5760
98
+ edsl/jobs/interviews/InterviewStatistic.py,sha256=U-tgtvE6vReExlzMqbb5XzNT8aA3BpwcQ2KOXvI6Yi0,1919
99
+ edsl/jobs/interviews/InterviewStatisticsCollection.py,sha256=gAUQ77j1tTpBrhnGo4l2l_AD3cvYa7JH_CfdmMVljtM,813
100
+ edsl/jobs/interviews/InterviewStatusDictionary.py,sha256=mxNuG6rVtiqhaeN7r7z_A0ikAqOha-nzKztsPE8YV-4,2563
101
+ edsl/jobs/interviews/InterviewStatusLog.py,sha256=ygccC-5G58-X9rYv6kJQA0hPHMdYhSYkeRmPcT7OGLQ,3344
102
+ edsl/jobs/interviews/ReportErrors.py,sha256=3P8umwT_WTUgC5XvwNIxwuG-s-2ddSuKzhDHH1ogpWc,1849
103
+ edsl/jobs/Jobs.py,sha256=nM2H0YvRtxHmO-gpDv-uVYEqHmEOJwwmpsBLsRe7wJg,41784
104
+ edsl/jobs/runners/JobsRunnerAsyncio.py,sha256=Fe_uddyLWLXfXxHXDDKs52U3J9UGwNQGD_T_Zfhgn7Y,13077
105
+ edsl/jobs/runners/JobsRunnerStatus.py,sha256=yGRW4K-QueJbJ6wGoxfRg-131TeypwQ5is89lH8ymc4,12444
106
+ edsl/jobs/runners/JobsRunnerStatusData.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
+ edsl/jobs/tasks/QuestionTaskCreator.py,sha256=iCVsxuoI5OqNQ_BKBB-cEb3bCC6FWxBhy4orUp51SOA,10314
108
+ edsl/jobs/tasks/task_status_enum.py,sha256=dTrlELdrX5XJUmV4KwWQFpny3s9aHBUJMp8Yb1RmnRM,5496
109
+ edsl/jobs/tasks/TaskCreators.py,sha256=klqJCwaz4dFipufHFh8UoXodfWx0eLgq1E3cAopLBBM,2758
110
+ edsl/jobs/tasks/TaskHistory.py,sha256=1PpnMq5h-EEc2REYesOorOyp5a-qrrinQX38p88GrQY,15273
111
+ edsl/jobs/tasks/TaskStatusLog.py,sha256=H9WO9nXhbqLc49OYveQqPwBw_7GB_iLnwl0uTDKy3rw,569
112
+ edsl/jobs/tokens/InterviewTokenUsage.py,sha256=nJLCVS4QpGRiSJSooaV4RCyTCzdYPIs7chsvYPYgjCw,1127
113
+ edsl/jobs/tokens/TokenUsage.py,sha256=3BD68hXkY06HRtGwXramJoi9Ekrt4qXd7rbCu1LNhpY,1357
114
+ edsl/language_models/__init__.py,sha256=hKFyVlOQ9hfZhOxp4aPW5ZJdHSTKzBpEO-G-SCcbLUI,111
115
+ edsl/language_models/fake_openai_call.py,sha256=UG7199ET0yljJvDsqtPsuugZze15OiSG3wWU4LOJwzs,379
116
+ edsl/language_models/fake_openai_service.py,sha256=Gz1yu6z26siYUGsscY33vIjQh_QN-N7-lPpYYrVTXJo,1775
117
+ edsl/language_models/LanguageModel.py,sha256=61oFAcaayyz5YzVcAzHeBzkfLZCqdlGNJB8B19xIL_M,26113
118
+ edsl/language_models/ModelList.py,sha256=hQAWZjN1qt1n_gnmsvoeON7wj1EDmoTFSYQPsKowyro,2954
119
+ edsl/language_models/RegisterLanguageModelsMeta.py,sha256=S2ehZ15EEoLx6RxxL6L28zs4Cg1PYenjv6K35zGV2ZM,7707
120
+ edsl/language_models/registry.py,sha256=m6LFAG6c106Gp9zzMJ-rqsO4_3cTQVnkpR5r5Mqkz1E,4506
121
+ edsl/language_models/repair.py,sha256=CdBy2EnAlloiT-c4SyzwdO4YIzAe2MCvMT39Kq51GqU,5509
122
+ edsl/language_models/unused/ReplicateBase.py,sha256=8fbpHaaQ2nv7YVyupZj1Jo7xpg8PnS1IWTP7CO_RZE4,3414
123
+ edsl/language_models/utilities.py,sha256=kh8nBYOpUY9OOdqY8GBHlmGv_RpNVexvf-M5k5yI0lM,2344
124
+ edsl/notebooks/__init__.py,sha256=uxMBECcGhUMbaOqcpbmgPwkmDktgaQDXJwMA5_B9pr0,46
125
+ edsl/notebooks/Notebook.py,sha256=n-xXwqiR67VShIgEQt9fxQsK-0k0OFeUfufpe6DCops,7998
126
+ edsl/prompts/__init__.py,sha256=6RS7kwk8c9Tre3g7HW5O5h5dPHqEiMPsT0KOQGeuzeY,89
127
+ edsl/prompts/Prompt.py,sha256=Uhj3jZi7vRrptwMphilBjvT0GGM4N-zAwBr6JZInqPQ,11652
128
+ edsl/questions/__init__.py,sha256=qY46zvnOb-9Z21Mf2wL9rrov0PoEtdNiO6tEQO-Vmog,1187
129
+ edsl/questions/AnswerValidatorMixin.py,sha256=kUL7nKZ4dQWw3ZiolNUYXIq7Q2sbxZIE3thfVPjkOTA,11794
130
+ edsl/questions/compose_questions.py,sha256=6UVQCeCpd4i8093uD0O10cv55DIrw-GU_5LrnC_tR3g,3478
131
+ edsl/questions/decorators.py,sha256=S8W47skvVP3PFa8vgMHEIr49XA5K9gR38DHy5vjVWAw,617
132
+ edsl/questions/derived/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ edsl/questions/derived/QuestionLikertFive.py,sha256=9HjFhLDgJHX-cODULNNzNXfPehZy-2_RVs0w6x5Iy9s,2661
134
+ edsl/questions/derived/QuestionLinearScale.py,sha256=VOYShRrH7u6AvJI_0YQJjhbTs7uc9RNZT9KtQY334iI,3391
135
+ edsl/questions/derived/QuestionTopK.py,sha256=B-Kbuwj_nVNBj3BksKqG4tOpAlTwkEUq2Q0hBELRFdI,3303
136
+ edsl/questions/derived/QuestionYesNo.py,sha256=cGo2kP0fGqS9C94aA5I2t0WArhLM5-4I3Qjq8PvV2nw,2817
137
+ edsl/questions/descriptors.py,sha256=2AY7IXV9MbggKR_-SZCmK3chNJ4OwQmtweqG63T_tzk,16865
138
+ edsl/questions/prompt_templates/question_budget.jinja,sha256=PFDJjxwyomn42xJhgdSasH_Yi0gBtCLDG9Ni3MxgCDM,750
139
+ edsl/questions/prompt_templates/question_checkbox.jinja,sha256=5PhI0g8m6wTupy44-1zt80uqRsuGJAD0G7kDeCGbqg4,1168
140
+ edsl/questions/prompt_templates/question_extract.jinja,sha256=XTYiPVp90_k9mJPiVdNtwgykj9YiQV9nrBKBIzzWm6o,354
141
+ edsl/questions/prompt_templates/question_free_text.jinja,sha256=rcv7UExueIwEbktlr23fWJAMevGVfG3IY5d-YImYpUM,105
142
+ edsl/questions/prompt_templates/question_linear_scale.jinja,sha256=2q7t2nfAdZN70BwAT0b0UiUjduh6LVRTaltfpI0kYTo,466
143
+ edsl/questions/prompt_templates/question_list.jinja,sha256=dWlesTNWIzv6bARw8MgRlvO3lEC9HoBxWr54xx1wQS8,512
144
+ edsl/questions/prompt_templates/question_multiple_choice.jinja,sha256=GKDO8cam_I0MC1IyX9mja5TNuvVp1u1e4FuwBmkoH-g,794
145
+ edsl/questions/prompt_templates/question_numerical.jinja,sha256=gxhUpmepIWo4fE0hV8oL4-k2P3MK73VpNuKlVotHe5U,1254
146
+ edsl/questions/question_registry.py,sha256=nR-Y8GpHg6gUyMOoalH_56FMdfhPUDLcjXtmWwTMAsg,5512
147
+ edsl/questions/QuestionBase.py,sha256=cCffoA6YD3eRFd0QXK-gnu2Foy7zy5Gg6Pa-V5YhbI4,21785
148
+ edsl/questions/QuestionBaseGenMixin.py,sha256=nqgoa1ZVytObYim6vQtdMozdc9eiYy6EpQwB1UD2KRQ,6178
149
+ edsl/questions/QuestionBasePromptsMixin.py,sha256=4ibBkjiLLfBdtEZlHPzkePEL0d2B5khHHjE83LGoCBA,9818
150
+ edsl/questions/QuestionBudget.py,sha256=3obTjOfx9RoRrWU6AZW7pTdu6eQfemBZO-ICnwU-miU,8358
151
+ edsl/questions/QuestionCheckBox.py,sha256=l3J5zD1VGfnQOCeMrtQsv44A97I95IkxmTjHgHH5tLw,13199
152
+ edsl/questions/QuestionExtract.py,sha256=jx42AWkk7gn1VYRG0SK7Jb9TqD3mwZZlkcX_m2yLSwE,6286
153
+ edsl/questions/QuestionFreeText.py,sha256=AZCOyb9jK1h7Tu1Sxip64Jzmje_FF3t8GaGXoDT4YmI,3537
154
+ edsl/questions/QuestionFunctional.py,sha256=cwDLDLIZOl8qhvJr9Om3zn781xOQOFIdyjcLcLMd7Aw,5406
155
+ edsl/questions/QuestionList.py,sha256=u2E-G_Qx9-TrD7eyiV3flQqLd-NiHt7W61MwdmHZzMY,7440
156
+ edsl/questions/QuestionMultipleChoice.py,sha256=LIAb4tMKB7W3Q1xckhCYadscVQh4izqtPotI9SpQ-k8,10578
157
+ edsl/questions/QuestionNumerical.py,sha256=N4FfJzvMOiRBfnbSOAEAncJv8HAvBPx0sp0hBp9-bsA,5112
158
+ edsl/questions/QuestionRank.py,sha256=dthkMnGVFb9EVnRc1cexP3b3XM9__knK81xkBNPn99I,11920
159
+ edsl/questions/Quick.py,sha256=ElZbU1veDd7_6NQp3Tn2xYTEau4WEM4x_ELT5hiZBSY,1772
160
+ edsl/questions/RegisterQuestionsMeta.py,sha256=qelLc_WBo_inWFjfN5_aH2IQpvl6jYqAOV6lLlV7koM,2669
161
+ edsl/questions/ResponseValidatorABC.py,sha256=RHFloDG5bbLg6sFHg36w7-p45u7YFy01pyN8SKUtjwI,6271
162
+ edsl/questions/settings.py,sha256=PDXSJX_Nz59K5x48Z3YtNRowwpoaD4J0p5f52r0bKjo,303
163
+ edsl/questions/SimpleAskMixin.py,sha256=7AFENKESMmC6v3FCjiGmLsJHEImzMaCe5dbe82VKF2k,2300
164
+ edsl/questions/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
+ edsl/questions/templates/budget/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ edsl/questions/templates/budget/answering_instructions.jinja,sha256=TnRH4_PgEqg3tBQ93kUPo3U8w45G9wv9gU234D8r95Q,359
167
+ edsl/questions/templates/budget/question_presentation.jinja,sha256=thU7kV5rEPwwo5CxDs544AVRpLXgb_orF0McG1Z4w3Y,205
168
+ edsl/questions/templates/checkbox/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
+ edsl/questions/templates/checkbox/answering_instructions.jinja,sha256=TJJL0ZobijE_gVNx8SqeoCp_AT7SlFBSctI7_xdmhgk,451
170
+ edsl/questions/templates/checkbox/question_presentation.jinja,sha256=SsTdAJnnv1GrIYar8DWJLfdfnID6aj5fB9_ngtqjXUA,829
171
+ edsl/questions/templates/extract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
+ edsl/questions/templates/extract/answering_instructions.jinja,sha256=BMDqmSIg-krOZhjMtnJW2jFdSThh0G3woQSLfIQg_TE,260
173
+ edsl/questions/templates/extract/question_presentation.jinja,sha256=OLDuxUc6BjT4InCtAkK_e-D5qbsDmtxw1Spp9pWFYhU,17
174
+ edsl/questions/templates/free_text/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
175
+ edsl/questions/templates/free_text/answering_instructions.jinja,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
+ edsl/questions/templates/free_text/question_presentation.jinja,sha256=OLDuxUc6BjT4InCtAkK_e-D5qbsDmtxw1Spp9pWFYhU,17
177
+ edsl/questions/templates/likert_five/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
+ edsl/questions/templates/likert_five/answering_instructions.jinja,sha256=11wNWHzVzxtkYoWdYibV_Ge-h8V5TBM6TX-wEnYa0vk,341
179
+ edsl/questions/templates/likert_five/question_presentation.jinja,sha256=w4dhEr_HSxGzhuSMVlF_TB755dsBctDUq--QV_5GTgI,284
180
+ edsl/questions/templates/linear_scale/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
+ edsl/questions/templates/linear_scale/answering_instructions.jinja,sha256=kq2YlaorGs-rKGUKofZFYYegHJbbYVERXLYYUSVtrTU,258
182
+ edsl/questions/templates/linear_scale/question_presentation.jinja,sha256=eRPZoIwr6qqBf8yqfv_GjdMLWsGlR3-6NnvxOz3-fNs,153
183
+ edsl/questions/templates/list/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
+ edsl/questions/templates/list/answering_instructions.jinja,sha256=cBwF9xuvpyHGWRItgdBBbDfIPkeldLlhPueqcfwFaZI,268
185
+ edsl/questions/templates/list/question_presentation.jinja,sha256=jZavkXxkQ0HceeHgf3wT3-2hZZtiWKYiC7nHax00kbA,136
186
+ edsl/questions/templates/multiple_choice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
+ edsl/questions/templates/multiple_choice/answering_instructions.jinja,sha256=bzYpahR5Qb3_uUolz6onO-8InHbw2QDcrF2OzUSNMmA,339
188
+ edsl/questions/templates/multiple_choice/html.jinja,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
+ edsl/questions/templates/multiple_choice/question_presentation.jinja,sha256=w4dhEr_HSxGzhuSMVlF_TB755dsBctDUq--QV_5GTgI,284
190
+ edsl/questions/templates/numerical/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
+ edsl/questions/templates/numerical/answering_instructions.jinja,sha256=KgwduCdGWFpDJzONqFYLB88FTj4FF5vrH7kGTohHWvU,329
192
+ edsl/questions/templates/numerical/question_presentation.jinja,sha256=QWvieOEKTEij1tSNl7NQ5sylSGO5_ILiRsiUWn15bko,189
193
+ edsl/questions/templates/rank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
+ edsl/questions/templates/rank/answering_instructions.jinja,sha256=xHk_IP5zU30bKtyUUvlHN_TuF_BInfN1I9bJg2Yewus,444
195
+ edsl/questions/templates/rank/question_presentation.jinja,sha256=xELET2O8CUPYyT3qZJC6vFTsUa6LIn0xavVEJn6H0to,349
196
+ edsl/questions/templates/top_k/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
+ edsl/questions/templates/top_k/answering_instructions.jinja,sha256=Toc5ZEU64_1ZiD1T6yRM4WEBRZkkCwb1uUuLIl9V2mw,274
198
+ edsl/questions/templates/top_k/question_presentation.jinja,sha256=SsTdAJnnv1GrIYar8DWJLfdfnID6aj5fB9_ngtqjXUA,829
199
+ edsl/questions/templates/yes_no/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
200
+ edsl/questions/templates/yes_no/answering_instructions.jinja,sha256=OQsY9RXUlzGk3ETL7kJ5uVWzxrMh4PZPDoekiVulS4I,178
201
+ edsl/questions/templates/yes_no/question_presentation.jinja,sha256=w4dhEr_HSxGzhuSMVlF_TB755dsBctDUq--QV_5GTgI,284
202
+ edsl/results/__init__.py,sha256=bZU4V1C9gAiM7jrdoDxH-bZs5X0lZU36GWdK1GFRJL0,82
203
+ edsl/results/Dataset.py,sha256=9igqUTaQ7dXdNajvWRbEYXF91hz4SkYOE44nBL-PttA,9840
204
+ edsl/results/DatasetExportMixin.py,sha256=86vuVmZqz_BuxEDwr-6C0ctnj8rbDG-bhSO2myGtl9E,26583
205
+ edsl/results/DatasetTree.py,sha256=5N_36RPQl_qIwe9D04n-2JjXZDf6B5dZCfkGGIvtlQQ,5130
206
+ edsl/results/Result.py,sha256=lV8JQSxIcu65uAr0u4Q48n-hTNHsUhMXeilGbe3P3NM,16117
207
+ edsl/results/Results.py,sha256=qfMknxY-wWdfKDD8wwN9sAr5BE9u_46tiGirIFrKbkQ,42556
208
+ edsl/results/ResultsDBMixin.py,sha256=h4DZ7UnBAJqHZBwQBYKFiga18cxtFTSqjoZhHGf5png,8160
209
+ edsl/results/ResultsExportMixin.py,sha256=4b2iW3TH7E1SFtHNRBOl_44gI4xaVOsoqmb4Yvfbix0,1309
210
+ edsl/results/ResultsFetchMixin.py,sha256=o8Xy_hY4nprzOxAoSmudIlkzg8oOH45N4dnuiwRXBkI,881
211
+ edsl/results/ResultsGGMixin.py,sha256=e_PP_IRFjYtxUBJKeQRlTfu0RoavReV1CIY_9g1OQww,4465
212
+ edsl/results/ResultsToolsMixin.py,sha256=WkxeXVi77h1-lkYD6RoVRfpd2Hmb5KNzsEpNzdZdMes,3115
213
+ edsl/results/Selector.py,sha256=rnufGzOX9Nb9KHmv318A0zyWNj80xJMCyZovRP9Z2qA,4521
214
+ edsl/results/tree_explore.py,sha256=IN3dFSXrCfTfjhOb6NmypK6p-TW1TqOD8278BMcyIEg,4739
215
+ edsl/scenarios/__init__.py,sha256=y67hh_l-sCdMP0fFUa7nEbC-wP-X97OdhTLrcfYussw,152
216
+ edsl/scenarios/FileStore.py,sha256=AHDN8sWIP5Rb1qej_yYNVY4eoKdGAxGyDLrXkZaBmCA,14718
217
+ edsl/scenarios/Scenario.py,sha256=pcMawbPgZRc45CZTnAL2hmi2dZIn-jp8-VlCkGMf2do,17928
218
+ edsl/scenarios/ScenarioHtmlMixin.py,sha256=SS5ZVxw8fo6Z3TER_nJP6FV8UdcYP11wgu-VxBhgqcQ,1941
219
+ edsl/scenarios/ScenarioList.py,sha256=er1qIxC86nBDdD-IiJWwUaKE88y71s98VwK2g7LsFNM,42043
220
+ edsl/scenarios/ScenarioListExportMixin.py,sha256=IjOGh3c8WPJnmdJz69W6DnUcTKpHVsMikdQxzs7-5OE,1733
221
+ edsl/scenarios/ScenarioListPdfMixin.py,sha256=EGGhet2Xfs2E88XUnMVW8B_xV91LVtScLPmOLsu26z8,8593
222
+ edsl/shared.py,sha256=56Zz60xR80ITB2qAatj0Yglns5pzNSCGLZfxfVdj9sY,21
223
+ edsl/study/__init__.py,sha256=ClO87SYaJhFlT4sPhp0aIVwo8A6q8VIKoXyd-KRRQEQ,174
224
+ edsl/study/ObjectEntry.py,sha256=DDEIDnzjfTgx3XRCUpI7apdRgZV-EOSLwC4YoMFCKGU,5961
225
+ edsl/study/ProofOfWork.py,sha256=mVp_1Lu-TLwx3krsBuvOY-9JzABfBOABzx-9GxG70I8,3546
226
+ edsl/study/SnapShot.py,sha256=WX9-Kw7JRJRSbUIiLKU6NqVnJLS_KLJP9k-3BS5j6i4,2758
227
+ edsl/study/Study.py,sha256=9j-7JcSBBTNKMnKbcG5K11UcZI5bi9cFZfFry3VKOFY,18990
228
+ edsl/surveys/__init__.py,sha256=QVjbN8G6stczph0ytwdbYA595r-jqW5co4VLh1i6MNM,132
229
+ edsl/surveys/base.py,sha256=dzR1zOUIOhQloHz7ghJl3SwZHEFq44_ivlXLJiZKIMU,1168
230
+ edsl/surveys/DAG.py,sha256=SDsLDqLhlQehJtwRQeGArDHhjhzv3X5NopQHJH-yY48,4383
231
+ edsl/surveys/descriptors.py,sha256=yaw4_Az_u8ixEeMJ8B8OlteWFhCEjInjSX96tqNGvXo,2132
232
+ edsl/surveys/instructions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
+ edsl/surveys/instructions/ChangeInstruction.py,sha256=zZJRfONLC6x7OIbRf_fjt78tkm30PsKCkpHyhPFt7vY,1312
234
+ edsl/surveys/instructions/Instruction.py,sha256=YwzAlcuRz3qwoaYBltFbmk0MNO9ZWFjPM7kYT0tofSg,1403
235
+ edsl/surveys/instructions/InstructionCollection.py,sha256=YeIFg2aNx8heC7DNrHjUh7PPyendaA77xtOsl3_5EAk,3008
236
+ edsl/surveys/Memory.py,sha256=madt-TdPRLmAPDPYpA8asgQ8vj9aQ53zArVyOLdjvRU,1144
237
+ edsl/surveys/MemoryPlan.py,sha256=R3PtcDcPEJJJmec01oCaXvRddV3z8InqVQHyjRZcd9M,9273
238
+ edsl/surveys/Rule.py,sha256=A2OEuXc5--1I2dCkLI-Z5F6ogRDqukXpsWzfksXv3n8,12547
239
+ edsl/surveys/RuleCollection.py,sha256=XdKQlgzdllIQiJmvASDpKthTcBRZPBCbKdDq7gKZfX4,15258
240
+ edsl/surveys/Survey.py,sha256=6uf9VMsFFRfLZALCr3mLQlS0_l9kynEBnBxuhaAtElY,73971
241
+ edsl/surveys/SurveyCSS.py,sha256=vutr6Yl5Kv59dEJKGEWuvL1zII-TnLc7kpUczPvmQdU,8676
242
+ edsl/surveys/SurveyExportMixin.py,sha256=s-6mao_pzGYNWiLTWEkyBZkEvksEkb4fvODq9FarRI8,8598
243
+ edsl/surveys/SurveyFlowVisualizationMixin.py,sha256=WPIQgAFSUMnf8XtApxgZM0ctQXi0UCPygNYvogsVi_Y,4125
244
+ edsl/surveys/SurveyQualtricsImport.py,sha256=H9x-kjMKWo-3XBIks8BquFw7Tx5ISo2JcvMRlcwF93E,10055
245
+ edsl/TemplateLoader.py,sha256=I5G7fTRP-cBwsPVD4O4ISxaGXuOE3_tftbelS4HEwJ4,873
246
+ edsl/templates/error_reporting/base.html,sha256=sGJEvsQ3zjkpQRw1M3J1iw-srJuHZFUXlHbk6V5rWdc,575
247
+ edsl/templates/error_reporting/exceptions_by_model.html,sha256=uw4FTTFtc-KfiH6v7R0cEGmo3wOXAAVMwyMGl-eC0HU,826
248
+ edsl/templates/error_reporting/exceptions_by_question_name.html,sha256=64pV-immQQDZXpTTo34fPI8-45qW02r1l3iyPY_sgd8,470
249
+ edsl/templates/error_reporting/exceptions_by_type.html,sha256=9S4qM8cP-vuw7dQ-UDG_0tYreY6SmgyLbE93XXma5KY,431
250
+ edsl/templates/error_reporting/interview_details.html,sha256=L2OlDJKOu5_dQ4-Y3MgKfwdG85tgVIlp0kEFR-RqAvI,4158
251
+ edsl/templates/error_reporting/interviews.html,sha256=7Bs_44zOUXEDXbo0drdOQ8zK1tSv67QQQHY_8qDvW9Y,402
252
+ edsl/templates/error_reporting/overview.html,sha256=0LRelIRtKzU3Mliv6_oLsUhd8RoS60F5F3GCMvJiIAk,409
253
+ edsl/templates/error_reporting/performance_plot.html,sha256=DXoJjYiRxNXnuMWl5HnK0xLxb6_gTVW9r0i0MziXAvg,54
254
+ edsl/templates/error_reporting/report.css,sha256=aQdfT3mit-znpnS2WDofusdEx11kwdfGf_VunXBcCl8,1282
255
+ edsl/templates/error_reporting/report.html,sha256=CmHoZKpZfviykCgUdKvPDrrRXlDurcp22u1yGlvWdno,4631
256
+ edsl/templates/error_reporting/report.js,sha256=n1eOw5L2QgxAqhC3gche08vIA9pTybplnYrCHCMF2Ck,982
257
+ edsl/tools/__init__.py,sha256=b76gzWv4VNWz_BkvhVowH__4sz4coNDP6wyKoXRK7V0,42
258
+ edsl/tools/clusters.py,sha256=uzcDLQb1rFcyjxWVYWvSWKaYdC1Z7jAAI0eLfS9Yen0,6324
259
+ edsl/tools/embeddings.py,sha256=Uk3o6CS6FHLt5QhYMARTLiwJEXutLgLyorUmnvPIoEY,704
260
+ edsl/tools/embeddings_plotting.py,sha256=UDyIdQliB8xUAGv2FygDgoh3T_jRHaUPPn1lrZtGHbA,3682
261
+ edsl/tools/plotting.py,sha256=wb67Vpi1xxGFmk3a3S_2hDIdsWMae1Wd02vc9txhmqk,3232
262
+ edsl/tools/summarize.py,sha256=-lmq-laiunYlC-0spyKy8HJthQc0rKAJYUKNlSqLmgE,674
263
+ edsl/utilities/__init__.py,sha256=ghsDYEuFWn7iAFWOhdgPCPShAIhrsgUveCZNwWwEuZw,566
264
+ edsl/utilities/ast_utilities.py,sha256=55OIW_BmhW57CxeOGNFKlLtQ-7TBcyRWWITrwsFkPmU,893
265
+ edsl/utilities/data/__init__.py,sha256=iIreocOo-LeE9DZw3B32k_puJgESMrSb13Y5xxfdjUE,63
266
+ edsl/utilities/data/Registry.py,sha256=iwwVGBdgj3dQZAZt7j9sg2-dgrmo885_Uk7Vgs2juwQ,182
267
+ edsl/utilities/data/scooter_results.json,sha256=oCWzRfzZ5fSYd_gkO-NLAqlcNrNuX11HA1mAl87PJxE,250945
268
+ edsl/utilities/decorators.py,sha256=k2tiacdNZ0SMiT84Utid2aCrWboP4VtZLRzXdBuR00w,2396
269
+ edsl/utilities/gcp_bucket/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
270
+ edsl/utilities/gcp_bucket/cloud_storage.py,sha256=UXAdn0zjXBCiio32arPq0RV4pI850tpW1AVsWkdMu5k,3568
271
+ edsl/utilities/interface.py,sha256=l9HUE_6S1pg6HtRxmng1wgct-AFtJ__chIAXlYsFZ7k,20283
272
+ edsl/utilities/repair_functions.py,sha256=ZnoJsWzBRxhZnMf4yY3586nmoR_5pzktV-xWdhXmM4Y,957
273
+ edsl/utilities/restricted_python.py,sha256=ZK4r_T3cNSvIMXTuyC6dCHVX6-ed2NRzzXUbHAcgLlw,2130
274
+ edsl/utilities/SystemInfo.py,sha256=7xJ8MYEEx3aVFOoynu_nQqAv2ePQMyehEZOxFWMZk44,820
275
+ edsl/utilities/utilities.py,sha256=7om9Nh9IWxusHEA2a2QuwZiaoLozbSTCIPkfKf5ZIGk,11758
276
+ edsl-0.1.37.dev3.dist-info/LICENSE,sha256=hq3hkdxkn1rC8xTiiHh0VdWniMNkcS3rBozeiaKE5SQ,1132
277
+ edsl-0.1.37.dev3.dist-info/METADATA,sha256=zIxI59xtjuGGG21eOCGUz32s26RNHZys2kFj9JKsT5k,4476
278
+ edsl-0.1.37.dev3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
279
+ edsl-0.1.37.dev3.dist-info/RECORD,,
@@ -1,95 +0,0 @@
1
- from typing import Optional
2
-
3
- from edsl import Agent, AgentList, QuestionFreeText
4
- from edsl import Cache
5
- from edsl import QuestionList
6
- from edsl import Model
7
-
8
- from edsl.conversation.Conversation import Conversation, ConversationList
9
-
10
- m = Model("gemini-1.5-flash")
11
-
12
-
13
- class ChipLover(Agent):
14
- def __init__(self, name, chip_values, initial_chips, model: Optional[Model] = None):
15
- self.chip_values = chip_values
16
- self.initial_chips = initial_chips
17
- self.current_chips = initial_chips
18
- self.model = model or Model()
19
- super().__init__(
20
- name=name,
21
- traits={
22
- "motivation": f"""
23
- You are {name}. You are negotiating the trading of colored 'chips' with other players. You want to maximize your score.
24
- When you want to accept a deal, say "DEAL!"
25
- Note that different players can have different values for the chips.
26
- """,
27
- "chip_values": chip_values,
28
- "initial_chips": initial_chips,
29
- },
30
- )
31
-
32
- def trade(self, chips_given_dict, chips_received_dict):
33
- for color, amount in chips_given_dict.items():
34
- self.current_chips[color] -= amount
35
- for color, amount in chips_received_dict.items():
36
- self.current_chips[color] += amount
37
-
38
- def get_score(self):
39
- return sum(
40
- self.chip_values[color] * self.current_chips[color]
41
- for color in self.chip_values
42
- )
43
-
44
-
45
- a1 = ChipLover(
46
- name="Alice",
47
- chip_values={"Green": 7, "Blue": 1, "Red": 0},
48
- model=Model("gemini-1.5-flash"),
49
- initial_chips={"Green": 1, "Blue": 2, "Red": 3},
50
- )
51
- a2 = ChipLover(
52
- name="Bob",
53
- chip_values={"Green": 7, "Blue": 1, "Red": 0},
54
- initial_chips={"Green": 1, "Blue": 2, "Red": 3},
55
- )
56
-
57
- c1 = Conversation(agent_list=AgentList([a1, a2]), max_turns=10, verbose=True)
58
- c2 = Conversation(agent_list=AgentList([a1, a2]), max_turns=10, verbose=True)
59
-
60
- with Cache() as c:
61
- combo = ConversationList([c1, c2], cache=c)
62
- combo.run()
63
- results = combo.to_results()
64
- results.select("conversation_index", "index", "agent_name", "dialogue").print(
65
- format="rich"
66
- )
67
-
68
- q = QuestionFreeText(
69
- question_text="""This was a conversation/negotiation: {{ transcript }}.
70
- What trades occurred in the conversation?
71
- """,
72
- question_name="trades",
73
- )
74
-
75
- q_actors = QuestionList(
76
- question_text="""Here is a transcript: {{ transcript }}.
77
- Who were the actors in the conversation?
78
- """,
79
- question_name="actors",
80
- )
81
-
82
- from edsl import QuestionList
83
-
84
- q_transfers = QuestionList(
85
- question_text="""This was a conversation/negotiation: {{ transcript }}.
86
- Extract all offers and their outcomes.
87
- Use this format: {'proposing_agent':"Alice": 'receiving_agent': "Bob", 'gives':{"Green": 1, "Blue": 2}, 'receives':{"Green": 2, "Blue": 1}, 'accepted':True}
88
- """,
89
- question_name="transfers",
90
- )
91
-
92
- transcript_analysis = (
93
- q.add_question(q_actors).add_question(q_transfers).by(combo.summarize()).run()
94
- )
95
- transcript_analysis.select("trades", "actors", "transfers").print(format="rich")
@@ -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,22 +0,0 @@
1
- import re
2
- import textwrap
3
-
4
-
5
- class ScenarioError(Exception):
6
- documentation = "https://docs.expectedparrot.com/en/latest/scenarios.html#module-edsl.scenarios.Scenario"
7
-
8
- def __init__(self, message: str):
9
- self.message = message + "\n" + "Documentation: " + self.documentation
10
- super().__init__(self.message)
11
-
12
- def __str__(self):
13
- return self.make_urls_clickable(self.message)
14
-
15
- @staticmethod
16
- def make_urls_clickable(text):
17
- url_pattern = r"https?://[^\s]+"
18
- urls = re.findall(url_pattern, text)
19
- for url in urls:
20
- clickable_url = f"\033]8;;{url}\007{url}\033]8;;\007"
21
- text = text.replace(url, clickable_url)
22
- return text
@@ -1,30 +0,0 @@
1
- import os
2
- from collections import UserDict
3
-
4
- from edsl.enums import service_to_api_keyname
5
- from edsl.exceptions import MissingAPIKeyError
6
-
7
-
8
- class KeyLookup(UserDict):
9
- @classmethod
10
- def from_os_environ(cls):
11
- """Create an instance of KeyLookupAPI with keys from os.environ"""
12
- return cls({key: value for key, value in os.environ.items()})
13
-
14
- def get_api_token(self, service: str, remote: bool = False):
15
- key_name = service_to_api_keyname.get(service, "NOT FOUND")
16
-
17
- if service == "bedrock":
18
- api_token = [self.get(key_name[0]), self.get(key_name[1])]
19
- missing_token = any(token is None for token in api_token)
20
- else:
21
- api_token = self.get(key_name)
22
- missing_token = api_token is None
23
-
24
- if missing_token and service != "test" and not remote:
25
- raise MissingAPIKeyError(
26
- f"""The key for service: `{service}` is not set.
27
- Need a key with name {key_name} in your .env file."""
28
- )
29
-
30
- return api_token