edsl 0.1.44__py3-none-any.whl → 0.1.46__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- edsl/Base.py +7 -3
- edsl/__version__.py +1 -1
- edsl/agents/InvigilatorBase.py +3 -1
- edsl/agents/PromptConstructor.py +66 -91
- edsl/agents/QuestionInstructionPromptBuilder.py +160 -79
- edsl/agents/QuestionTemplateReplacementsBuilder.py +80 -17
- edsl/agents/question_option_processor.py +15 -6
- edsl/coop/CoopFunctionsMixin.py +3 -4
- edsl/coop/coop.py +171 -96
- edsl/data/RemoteCacheSync.py +10 -9
- edsl/enums.py +3 -3
- edsl/inference_services/AnthropicService.py +11 -9
- edsl/inference_services/AvailableModelFetcher.py +2 -0
- edsl/inference_services/AwsBedrock.py +1 -2
- edsl/inference_services/AzureAI.py +12 -9
- edsl/inference_services/GoogleService.py +9 -4
- edsl/inference_services/InferenceServicesCollection.py +2 -2
- edsl/inference_services/MistralAIService.py +1 -2
- edsl/inference_services/OpenAIService.py +9 -4
- edsl/inference_services/PerplexityService.py +2 -1
- edsl/inference_services/{GrokService.py → XAIService.py} +2 -2
- edsl/inference_services/registry.py +2 -2
- edsl/jobs/AnswerQuestionFunctionConstructor.py +12 -1
- edsl/jobs/Jobs.py +24 -17
- edsl/jobs/JobsChecks.py +10 -13
- edsl/jobs/JobsPrompts.py +49 -26
- edsl/jobs/JobsRemoteInferenceHandler.py +4 -5
- edsl/jobs/async_interview_runner.py +3 -1
- edsl/jobs/check_survey_scenario_compatibility.py +5 -5
- edsl/jobs/data_structures.py +3 -0
- edsl/jobs/interviews/Interview.py +6 -3
- edsl/jobs/interviews/InterviewExceptionEntry.py +12 -0
- edsl/jobs/tasks/TaskHistory.py +1 -1
- edsl/language_models/LanguageModel.py +6 -3
- edsl/language_models/PriceManager.py +45 -5
- edsl/language_models/model.py +47 -26
- edsl/questions/QuestionBase.py +21 -0
- edsl/questions/QuestionBasePromptsMixin.py +103 -0
- edsl/questions/QuestionFreeText.py +22 -5
- edsl/questions/descriptors.py +4 -0
- edsl/questions/question_base_gen_mixin.py +96 -29
- edsl/results/Dataset.py +65 -0
- edsl/results/DatasetExportMixin.py +320 -32
- edsl/results/Result.py +27 -0
- edsl/results/Results.py +22 -2
- edsl/results/ResultsGGMixin.py +7 -3
- edsl/scenarios/DocumentChunker.py +2 -0
- edsl/scenarios/FileStore.py +10 -0
- edsl/scenarios/PdfExtractor.py +21 -1
- edsl/scenarios/Scenario.py +25 -9
- edsl/scenarios/ScenarioList.py +226 -24
- edsl/scenarios/handlers/__init__.py +1 -0
- edsl/scenarios/handlers/docx.py +5 -1
- edsl/scenarios/handlers/jpeg.py +39 -0
- edsl/surveys/Survey.py +5 -4
- edsl/surveys/SurveyFlowVisualization.py +91 -43
- edsl/templates/error_reporting/exceptions_table.html +7 -8
- edsl/templates/error_reporting/interview_details.html +1 -1
- edsl/templates/error_reporting/interviews.html +0 -1
- edsl/templates/error_reporting/overview.html +2 -7
- edsl/templates/error_reporting/performance_plot.html +1 -1
- edsl/templates/error_reporting/report.css +1 -1
- edsl/utilities/PrettyList.py +14 -0
- edsl-0.1.46.dist-info/METADATA +246 -0
- {edsl-0.1.44.dist-info → edsl-0.1.46.dist-info}/RECORD +67 -66
- edsl-0.1.44.dist-info/METADATA +0 -110
- {edsl-0.1.44.dist-info → edsl-0.1.46.dist-info}/LICENSE +0 -0
- {edsl-0.1.44.dist-info → edsl-0.1.46.dist-info}/WHEEL +0 -0
@@ -1,19 +1,19 @@
|
|
1
|
-
edsl/Base.py,sha256=
|
1
|
+
edsl/Base.py,sha256=6X4M5-TZ5dhnNwYKOWO7IQAX1yHsEyfvHTqegyOifIM,13364
|
2
2
|
edsl/BaseDiff.py,sha256=92BirXj2u3TEGHJWni9TBsvZjvq8wpb4wDL2vxX9Lb0,8253
|
3
3
|
edsl/TemplateLoader.py,sha256=sDBlSMt7EfOduM7w3h6v03gvh_Rzn9hVrlS-iLSQdZA,849
|
4
4
|
edsl/__init__.py,sha256=iB5q_P2pXDV6Wb5oHKsFDhi_rJXID0aaqio1I98dwXA,1936
|
5
|
-
edsl/__version__.py,sha256=
|
5
|
+
edsl/__version__.py,sha256=X3e_85I7oZGwZD8nW9SBKEUbQU7-_3W9FXuicrfxHjc,23
|
6
6
|
edsl/agents/Agent.py,sha256=lF7GD_bCvRLP4hrtm3w451AUfuJln5jZHGYBH84CMVE,40741
|
7
7
|
edsl/agents/AgentList.py,sha256=iRfQfyUYtaJbJ3sRubPqPKRr77nKQgzhFEeZ0wcAEk0,18955
|
8
8
|
edsl/agents/Invigilator.py,sha256=SObe7PC08XoWNpOubZMFlVKPN8nfZplYBwY9LXJou8c,12084
|
9
|
-
edsl/agents/InvigilatorBase.py,sha256=
|
10
|
-
edsl/agents/PromptConstructor.py,sha256=
|
11
|
-
edsl/agents/QuestionInstructionPromptBuilder.py,sha256=
|
12
|
-
edsl/agents/QuestionTemplateReplacementsBuilder.py,sha256
|
9
|
+
edsl/agents/InvigilatorBase.py,sha256=SfpKlZm3oP6b0XIMSK5c1oD3MUevemUe7qNfqsokY40,9098
|
10
|
+
edsl/agents/PromptConstructor.py,sha256=az29xdlMmuR6tYDDmn5AOHZhtHIPLqdneD89ff_Qh_A,12218
|
11
|
+
edsl/agents/QuestionInstructionPromptBuilder.py,sha256=D1hI4Z1w4TTQ_DmsfGAcX53zd8NI01tQS-Cfqr2L-jI,9426
|
12
|
+
edsl/agents/QuestionTemplateReplacementsBuilder.py,sha256=57ZztPSw0kVWg2HG8NU58qMJdVMn1xEFv0tyZYOJXHI,8767
|
13
13
|
edsl/agents/__init__.py,sha256=a3H1lxDwu9HR8fwh79C5DgxPSFv_bE2rzQ6y1D8Ba5c,80
|
14
14
|
edsl/agents/descriptors.py,sha256=JxM_ckzhDmfZT1igSUdCxgyQcCK0o9MhU5jbLIned9g,3189
|
15
15
|
edsl/agents/prompt_helpers.py,sha256=JkVRPrLQ1egPqbBKcgR22c6WYnTU4QjzZG5HwxDEHjs,5076
|
16
|
-
edsl/agents/question_option_processor.py,sha256=
|
16
|
+
edsl/agents/question_option_processor.py,sha256=ozh6XqW8z_eaXRauncYifOvEgsmb29F4FMapxhW3hCY,6715
|
17
17
|
edsl/auto/AutoStudy.py,sha256=XniD-g7jg19vbD5CWqq0QAiMsIz2CboKAAIluDODqzo,4326
|
18
18
|
edsl/auto/StageBase.py,sha256=7ZjV0T-8FQBL-r5LeAozNQY_0RJ_GySdX48ToM7-dLc,8254
|
19
19
|
edsl/auto/StageGenerateSurvey.py,sha256=_lC1-hhFjqd6md1-RE9uEOPtZp7dZHxJn0ERpszSfow,7394
|
@@ -32,21 +32,21 @@ edsl/conversation/car_buying.py,sha256=SmRd-_L62AmiZJK5UgJV3_tYTsVPTpEYQWb81ygN9
|
|
32
32
|
edsl/conversation/chips.py,sha256=IoWoWEdSfJqy_TRcPPjT73lhEmYgBrZ4_3kwHEHJijQ,3323
|
33
33
|
edsl/conversation/mug_negotiation.py,sha256=mjvAqErD4AjN3G2za2c-X-3axOShW-zAJUeiJqTxVPA,2616
|
34
34
|
edsl/conversation/next_speaker_utilities.py,sha256=bqr5JglCd6bdLc9IZ5zGOAsmN2F4ERiubSMYvZIG7qk,3629
|
35
|
-
edsl/coop/CoopFunctionsMixin.py,sha256=
|
35
|
+
edsl/coop/CoopFunctionsMixin.py,sha256=5Vm8fFTRSg9dFnNBxYqZpeUABSZa2Ttzaal6zB13FGs,690
|
36
36
|
edsl/coop/ExpectedParrotKeyHandler.py,sha256=1lriainznM1FfQ7GEvTiI1EW8uNi8Sms3Vt5UDxso3U,4456
|
37
37
|
edsl/coop/PriceFetcher.py,sha256=J5EaM-bPqnd2B0ZBVVqXJ-UQK-D4SdjmddYepnN7jz4,1777
|
38
38
|
edsl/coop/__init__.py,sha256=4iZCwJSzJVyjBYk8ggGxY2kZjq9dXVT1jhyPDNyew4I,115
|
39
|
-
edsl/coop/coop.py,sha256=
|
39
|
+
edsl/coop/coop.py,sha256=p1O3_JD3D_b5Cc5WaIcSbLVC5rofD2zIalg3ys0rdmo,46810
|
40
40
|
edsl/coop/utils.py,sha256=SBV76sk5_2rhP3RKGkJsOkrx9Qr-jD0puqYhVR_MgSY,3900
|
41
41
|
edsl/data/Cache.py,sha256=ryMWLowyXa8VwWKru-0pF43JHh2UVyL5Zezst-26J6c,18510
|
42
42
|
edsl/data/CacheEntry.py,sha256=mTc-WG_dWc4s9s3MrOl3yUqao2Q_igCerNcluM4XCSQ,7376
|
43
43
|
edsl/data/CacheHandler.py,sha256=wy2AdKkk_pmwP71htdmLV9UzXM4AuHm5pn1qscJlX9s,5150
|
44
|
-
edsl/data/RemoteCacheSync.py,sha256=
|
44
|
+
edsl/data/RemoteCacheSync.py,sha256=kGVQYShpuhouF10PhdLlJ1ZO6H3aJtKihl7QAcc_rpY,6124
|
45
45
|
edsl/data/SQLiteDict.py,sha256=V5Nfnxctgh4Iblqcw1KmbnkjtfmWrrombROSQ3mvg6A,8979
|
46
46
|
edsl/data/__init__.py,sha256=i_bbYBc-vrdASBpDMcpIcfhbLKYOkvqA57R3ysBcQ6o,177
|
47
47
|
edsl/data/orm.py,sha256=Jz6rvw5SrlxwysTL0QI9r68EflKxeEBmf6j6himHDS8,238
|
48
48
|
edsl/data_transfer_models.py,sha256=r7Nl2ZyR0FZhzqQg8tz2jxonTVBboK9W3qMicts69qc,1960
|
49
|
-
edsl/enums.py,sha256=
|
49
|
+
edsl/enums.py,sha256=t_-Ywm7VtvgPrknkP5uFa7tVyIsGv1nr2spG9QXu3gw,6177
|
50
50
|
edsl/exceptions/BaseException.py,sha256=eP30DOYtssbKt0qarfDkNOKDW-aG0DLaHtx42bp5dVQ,811
|
51
51
|
edsl/exceptions/__init__.py,sha256=guZX0w_IGt-fYBuK_xVKACfJfQU6AYXM2kscbPp8Yrw,1532
|
52
52
|
edsl/exceptions/agents.py,sha256=E_r9bHUQEPWTjy5D-CmDvFMgFe34aPtwo4ApYN71mDg,1626
|
@@ -63,56 +63,56 @@ edsl/exceptions/questions.py,sha256=8UGm6uo0sCfes1AXQzoGwcwKgzgmY7Bx6gyPzc0TxqY,
|
|
63
63
|
edsl/exceptions/results.py,sha256=NfY-IWroZsEKpprAipIxjJ2hxJKWgBS-Qa-zubDhAoE,509
|
64
64
|
edsl/exceptions/scenarios.py,sha256=j4OE9xrSrLKdRMwmr3webIRHBwBgvx0DL0uDThRW7yY,855
|
65
65
|
edsl/exceptions/surveys.py,sha256=BJUKFVkj6nrsq3TyvaZfEE-zjy3BCAM-s1lsdcrv_MM,677
|
66
|
-
edsl/inference_services/AnthropicService.py,sha256=
|
66
|
+
edsl/inference_services/AnthropicService.py,sha256=BDT6-28M0BmRDT60jmPQ056Z6yMocHIe_UjrmwY5rC8,3980
|
67
67
|
edsl/inference_services/AvailableModelCacheHandler.py,sha256=9zGT1Huz0VTOZyN5GpakcMAe6pZyYmZcdSzuqPUZ09g,6179
|
68
|
-
edsl/inference_services/AvailableModelFetcher.py,sha256=
|
69
|
-
edsl/inference_services/AwsBedrock.py,sha256=
|
70
|
-
edsl/inference_services/AzureAI.py,sha256=
|
68
|
+
edsl/inference_services/AvailableModelFetcher.py,sha256=YKejiwgHbVM31qYs73JURUSysdctp6r-EDoJH84oJZI,8061
|
69
|
+
edsl/inference_services/AwsBedrock.py,sha256=vs83ickoxkjKoR78cPgGQzpeaLRPLaWG857nDzlJZv0,3974
|
70
|
+
edsl/inference_services/AzureAI.py,sha256=QSR0dgZWw4PhP3mI6nAdiC1YOqGS8PZEb2cuBsRQQR8,8972
|
71
71
|
edsl/inference_services/DeepInfraService.py,sha256=fWlH5sCNxf8eHPHxPPxJMEVWpCM9sDenkC8IZYqtXfA,515
|
72
72
|
edsl/inference_services/DeepSeekService.py,sha256=eRGrXb0ux3AtbJLJCEb6hgADdVIWMXkll-OnvSL_D-k,499
|
73
|
-
edsl/inference_services/GoogleService.py,sha256=
|
74
|
-
edsl/inference_services/GrokService.py,sha256=K0IXun5poCLuut81QevasENSxVOyONA2yCmPQyyJEHI,308
|
73
|
+
edsl/inference_services/GoogleService.py,sha256=O_OcqWtZ8SDaD8OIpvSwedsLtsFVGiABGjEczCl2t1U,5177
|
75
74
|
edsl/inference_services/GroqService.py,sha256=eDMq8d7YAlJ2689ywaoaPGvMgFfOiX1KYlF_vr97N6I,510
|
76
75
|
edsl/inference_services/InferenceServiceABC.py,sha256=9DVmYqPfXuR0N9PPOy9Wp94eEBdymlJAwlUU4eKEc64,2056
|
77
|
-
edsl/inference_services/InferenceServicesCollection.py,sha256=
|
78
|
-
edsl/inference_services/MistralAIService.py,sha256=
|
76
|
+
edsl/inference_services/InferenceServicesCollection.py,sha256=i0eaf5K6zGbPfpuFhzPpkgVCeWDH8aU02FPfp5MliGs,5116
|
77
|
+
edsl/inference_services/MistralAIService.py,sha256=GHKZXtB4npdSpUvLqLc-OBJaihJpmky67NWBH_ql8xk,3763
|
79
78
|
edsl/inference_services/OllamaService.py,sha256=oro9CRl8IUE2Ro-zE69Cr4Zaf6Gdw29XW5CFU-46E0k,498
|
80
|
-
edsl/inference_services/OpenAIService.py,sha256=
|
81
|
-
edsl/inference_services/PerplexityService.py,sha256=
|
79
|
+
edsl/inference_services/OpenAIService.py,sha256=O5eavTstXPnMHHMcOS9kmMHHEO_CkUJ5o_bgumiNxbI,8470
|
80
|
+
edsl/inference_services/PerplexityService.py,sha256=u852C6rQ2FoEXa9mqf2XjVE90y4FvZ3HPPwkNQWQzv0,5664
|
82
81
|
edsl/inference_services/ServiceAvailability.py,sha256=z2GaZ7Qt2qILcRTVl1X7zZVlPFOP3THntB5WSgbbesQ,4741
|
83
82
|
edsl/inference_services/TestService.py,sha256=sLme9cgQsR0Nzdew3GyDpdfTeEEByxeak4YiodSZKvI,2986
|
84
83
|
edsl/inference_services/TogetherAIService.py,sha256=fe349fdJQw-9OHz5mDGa5qxdC9Nccz0MtkisNIZjBkI,6360
|
84
|
+
edsl/inference_services/XAIService.py,sha256=-kwtQXfE2bHeNTDiKK-Zgb5rYYoeCSFq621ex4k2NaI,306
|
85
85
|
edsl/inference_services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
86
|
edsl/inference_services/data_structures.py,sha256=IqxATICnHYE5csSUQl6qbzz3KcUask5pZk78-gijms4,3850
|
87
87
|
edsl/inference_services/models_available_cache.py,sha256=bOvevfRn2HlmBcHalaDkjFLxiw0JJhsXVUHZo_OhgjA,4061
|
88
88
|
edsl/inference_services/rate_limits_cache.py,sha256=HYslviz7mxF9U4CUTPAkoyBsiXjSju-YCp4HHir6e34,1398
|
89
|
-
edsl/inference_services/registry.py,sha256=
|
89
|
+
edsl/inference_services/registry.py,sha256=feFqywZs0ogzOheIMdKA_NWVPj1p8Iaik3O8_RbuVFs,1498
|
90
90
|
edsl/inference_services/write_available.py,sha256=NNwhATlaMp8IYY635MSx-oYxt5X15acjAfaqYCo_I1Y,285
|
91
|
-
edsl/jobs/AnswerQuestionFunctionConstructor.py,sha256=
|
91
|
+
edsl/jobs/AnswerQuestionFunctionConstructor.py,sha256=4-sw2nyH4rfzZafldDKGI2NzVXGYHXBFKtsLP3Vaw90,8408
|
92
92
|
edsl/jobs/Answers.py,sha256=lZpbGAqYqMQw7MUsmpivqMZkHjHHOmCY32s9Km284pQ,1445
|
93
93
|
edsl/jobs/FetchInvigilator.py,sha256=83tbrqY_1qK0biNF1x51N0sFx49FFmuOi3o5HmFuCIY,1785
|
94
94
|
edsl/jobs/InterviewTaskManager.py,sha256=I1GShC2CrBFnGOcWn3q2YUU0SJbesmeLrrM2_nkuhZo,3748
|
95
95
|
edsl/jobs/InterviewsConstructor.py,sha256=MyRgygmi4318PgERjhhZZXlNUju2lB1CBu8LJJjYNSs,1853
|
96
|
-
edsl/jobs/Jobs.py,sha256
|
97
|
-
edsl/jobs/JobsChecks.py,sha256=
|
96
|
+
edsl/jobs/Jobs.py,sha256=r-W6epQyCk3V0j0h3cika8C437OdtZKJv3tqb9xHpqY,31177
|
97
|
+
edsl/jobs/JobsChecks.py,sha256=2KT_Bs41SR0-0ryYC99VrE9j7V2ICxf9nPe21YHp67o,5265
|
98
98
|
edsl/jobs/JobsComponentConstructor.py,sha256=yzjBFQx1oK8CN2taniB82kpXo6W712dIG1E9ouwkujg,6969
|
99
|
-
edsl/jobs/JobsPrompts.py,sha256=
|
100
|
-
edsl/jobs/JobsRemoteInferenceHandler.py,sha256=
|
99
|
+
edsl/jobs/JobsPrompts.py,sha256=NuHtCXskGHLX1Y6SbBTFlfbGxwPvX3m2esjoUsl-hpQ,13179
|
100
|
+
edsl/jobs/JobsRemoteInferenceHandler.py,sha256=RyDjUm4FZvVRxk3rFciNcfqQnuk4f1mCj_KNg7iZy_k,11495
|
101
101
|
edsl/jobs/JobsRemoteInferenceLogger.py,sha256=rUaImMQWVZO24i8cXBeDpd4rMu3fUSbolfqBNbrG1ms,9265
|
102
102
|
edsl/jobs/RequestTokenEstimator.py,sha256=IF2sb1Tt_exzNyWnuvd8mm81gfyZsv-rUP-GUHBX32E,1183
|
103
103
|
edsl/jobs/__init__.py,sha256=aKuAyd_GoalGj-k7djOoVwEbFUE2XLPlikXaA1_8yAg,32
|
104
|
-
edsl/jobs/async_interview_runner.py,sha256=
|
104
|
+
edsl/jobs/async_interview_runner.py,sha256=fpO8ZhdoTxzWWxuBVHK_fVN1nWV6XOQ3tTE09NxMR5E,5311
|
105
105
|
edsl/jobs/buckets/BucketCollection.py,sha256=3rbeEPz6PppJ3YPpYlRGzCsiVOfYzjHyPtwA6TFdZLc,5062
|
106
106
|
edsl/jobs/buckets/ModelBuckets.py,sha256=hxw_tzc0V42CiB7mh5jIxlgwDVJ-zFZhlLtKrHEg8ho,2419
|
107
107
|
edsl/jobs/buckets/TokenBucket.py,sha256=DNv5aOO8kwq3PvCXg84HCBhYFkzSiOqLBLiEJRFuCGQ,10082
|
108
108
|
edsl/jobs/buckets/TokenBucketAPI.py,sha256=ht0b-xZvzaR9ymhjin4c1AZwapuLPOoJ2N9hViSPuA4,6847
|
109
109
|
edsl/jobs/buckets/TokenBucketClient.py,sha256=Jx20nDAdUSh3USUX9B4PHd1uAFMdyOHtRa2phzFnh-w,7095
|
110
|
-
edsl/jobs/check_survey_scenario_compatibility.py,sha256=
|
111
|
-
edsl/jobs/data_structures.py,sha256=
|
110
|
+
edsl/jobs/check_survey_scenario_compatibility.py,sha256=JTn2FOaPAZmcitRrysr8KvvSaG7Xia_bey0ZEK5N0pc,3826
|
111
|
+
edsl/jobs/data_structures.py,sha256=wEjmQjARia09UAWF6H5vSkieajku8pQk40JnGweAwoE,3870
|
112
112
|
edsl/jobs/decorators.py,sha256=vpeSgI3EP4RFz5V_OclFdnhiSrswihavAN8C9ygRhGE,1135
|
113
|
-
edsl/jobs/interviews/Interview.py,sha256=
|
113
|
+
edsl/jobs/interviews/Interview.py,sha256=xWeT2cPWtfd__nIX9ZnEVUVClEcqYYMeKY1UI40mbiE,15223
|
114
114
|
edsl/jobs/interviews/InterviewExceptionCollection.py,sha256=ZIe9nnI8pznxp1D0K2Ii9SHorc9-f0k_lQV-Giq41P8,3666
|
115
|
-
edsl/jobs/interviews/InterviewExceptionEntry.py,sha256=
|
115
|
+
edsl/jobs/interviews/InterviewExceptionEntry.py,sha256=A-7QGREECViHc1bZoPXXvJxgQ5aW-PdgOxADH-G7h9A,6478
|
116
116
|
edsl/jobs/interviews/InterviewStatistic.py,sha256=hY5d2EkIJ96NilPpZAvZZzZoxLXM7ss3xx5MIcKtTPs,1856
|
117
117
|
edsl/jobs/interviews/InterviewStatisticsCollection.py,sha256=_ZZ0fnZBQiIywP9Q_wWjpWhlfcPe2cn32GKut10t5RI,788
|
118
118
|
edsl/jobs/interviews/InterviewStatusDictionary.py,sha256=MSyys4hOWe1d8gfsUvAPbcKrs8YiPnz8jpufBSJL7SU,2485
|
@@ -127,15 +127,15 @@ edsl/jobs/runners/JobsRunnerStatus.py,sha256=1aySPXQ0ijCvv6Bqvddqe6Hlr-wAlTvxBV6
|
|
127
127
|
edsl/jobs/runners/JobsRunnerStatusData.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
128
128
|
edsl/jobs/tasks/QuestionTaskCreator.py,sha256=Bx7x2_Tc6hQvaAQNtnxvoF52bTCZH7AhiVWg_gSajmo,9934
|
129
129
|
edsl/jobs/tasks/TaskCreators.py,sha256=XqAbNU33378Z4PQncokbfJwnKt3KHR9aqa5fKYRDpfg,2694
|
130
|
-
edsl/jobs/tasks/TaskHistory.py,sha256=
|
130
|
+
edsl/jobs/tasks/TaskHistory.py,sha256=QNkTt0lJC5xiSgsgUIn5AkhhR9XOHzyT3YSSK3bAy7s,17524
|
131
131
|
edsl/jobs/tasks/TaskStatusLog.py,sha256=bqH36a32F12fjX-M-4lNOhHaK2-WLFzKE-r0PxZPRjI,546
|
132
132
|
edsl/jobs/tasks/task_status_enum.py,sha256=FLmfSgHSbB921UyC-mvKpBLg5HLRf_NbHKXF4f57kdw,5264
|
133
133
|
edsl/jobs/tokens/InterviewTokenUsage.py,sha256=u_6-IHpGFwZ6qMEXr24-jyLVUSSp4dSs_4iAZsBv7O4,1100
|
134
134
|
edsl/jobs/tokens/TokenUsage.py,sha256=odj2-wDNEbHl9noyFAQ0DSKV0D9cv3aDOpmXufKZ8O4,1323
|
135
135
|
edsl/language_models/ComputeCost.py,sha256=SLP_tQiZwMonlIVAsOseWpN4Gd3zVirSxN2WJsO5kzs,2310
|
136
|
-
edsl/language_models/LanguageModel.py,sha256=
|
136
|
+
edsl/language_models/LanguageModel.py,sha256=LcZPSFMm5Bmln15Vxueq2ntYtHoO9TFwQ3lo_rx8u_k,22018
|
137
137
|
edsl/language_models/ModelList.py,sha256=n8OWnPBeKT66XsXvbG5xWqvrs7MHBiuuFWp82gVQD0o,4731
|
138
|
-
edsl/language_models/PriceManager.py,sha256=
|
138
|
+
edsl/language_models/PriceManager.py,sha256=Atl2715WOl9u4cU1a_S_Ycrejc787T8_mi_o-DENCeQ,5757
|
139
139
|
edsl/language_models/RawResponseHandler.py,sha256=4ekXsNlDUOb_cfzmfJLS-KIjQXjf6xGgGdDgloqANxI,3904
|
140
140
|
edsl/language_models/RegisterLanguageModelsMeta.py,sha256=eMtBSAnlRnC4c-0_o2QkSNyzv-uAce4BEGMXq2PLj2E,7523
|
141
141
|
edsl/language_models/ServiceDataSources.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -147,7 +147,7 @@ edsl/language_models/key_management/KeyLookupBuilder.py,sha256=HV21uTSYOuSKBIIoG
|
|
147
147
|
edsl/language_models/key_management/KeyLookupCollection.py,sha256=OU6jPZoJ54fAtkTfxwsD2lw_ZVha92G_T0LpCq1r-js,1205
|
148
148
|
edsl/language_models/key_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
149
149
|
edsl/language_models/key_management/models.py,sha256=Rs7fjzFjPHXv4sKU9E-FnwZj2ul69sWDwhdIMhjjElE,2753
|
150
|
-
edsl/language_models/model.py,sha256=
|
150
|
+
edsl/language_models/model.py,sha256=fsMS8QVIliK3lklDlWePjmUMTT4tWCBApBD1ecQd6yQ,12109
|
151
151
|
edsl/language_models/repair.py,sha256=TnYY6-rTQFeZaeGOymT0UkIjfZrxs4JK0v2h9UY4m48,5401
|
152
152
|
edsl/language_models/utilities.py,sha256=0dXHl74OlGKf1224fo5wYsawdBvxqMAB87nY_tJ0VYY,2295
|
153
153
|
edsl/notebooks/Notebook.py,sha256=j1W_sGp5Oa6tY4FlR2KthOU_ZzCFlRShkHYcpciIt94,8217
|
@@ -157,13 +157,13 @@ edsl/prompts/Prompt.py,sha256=gSpMneHIlfOr1_rxWKiMdFMC98w458dg0KEFQDJmLAA,14081
|
|
157
157
|
edsl/prompts/__init__.py,sha256=wrtkH7JW72U93_pnmTvqQx_NoadH5OPRNfrZ5AaD7Co,87
|
158
158
|
edsl/questions/ExceptionExplainer.py,sha256=BgM80FRPJjS_TrY6XaVmlT666MzY9DEagviGQj9-WEQ,2868
|
159
159
|
edsl/questions/HTMLQuestion.py,sha256=mRzVpfFLZ2RYBSDbLHeXTyAXbUHorpiwhNf-nuUSC5M,3431
|
160
|
-
edsl/questions/QuestionBase.py,sha256=
|
161
|
-
edsl/questions/QuestionBasePromptsMixin.py,sha256=
|
160
|
+
edsl/questions/QuestionBase.py,sha256=2x4uMYxc2JDlF_IxTp-WKWZZtTSrZr3EthHHvDVhtUI,19280
|
161
|
+
edsl/questions/QuestionBasePromptsMixin.py,sha256=7Pboia46duzxwKcyO0CXcP3PxtAwD3inv_IFfmm3Oy4,11740
|
162
162
|
edsl/questions/QuestionBudget.py,sha256=fBxDRfPJ3HctSCNTzqGLPuRCACySb3NHugXCNE7pXH8,8133
|
163
163
|
edsl/questions/QuestionCheckBox.py,sha256=ho_tyr3a6gHcA2kWlfz0dSW_-2yd6ifdC3niPPPQJAY,12847
|
164
164
|
edsl/questions/QuestionDict.py,sha256=uk2X3WWKYuPY_uOoNsj5l9xiPVKk_wRoXBmz70PKBbI,13647
|
165
165
|
edsl/questions/QuestionExtract.py,sha256=Gix35u_RMHN2-paKJ8pc0h5c7HaMoLD6MOPVZVxVHkY,6055
|
166
|
-
edsl/questions/QuestionFreeText.py,sha256=
|
166
|
+
edsl/questions/QuestionFreeText.py,sha256=djdSv6CVd38ZoFDC5bWKPx2ZSK87ICzFmyPociW5RFQ,4253
|
167
167
|
edsl/questions/QuestionFunctional.py,sha256=APuTZ5QNBTLvwv_iNcgFFV81qImiUL3qHMMHjArREf0,5581
|
168
168
|
edsl/questions/QuestionList.py,sha256=YWCtqzo0JnYhNH0yOfU_iheL_3xQLiZm2L8i744B6Vo,7093
|
169
169
|
edsl/questions/QuestionMatrix.py,sha256=AYmFkgsWoWIa83w9ByhYBzYmocO2Q7B5D_qFPE9nJbU,9207
|
@@ -182,7 +182,7 @@ edsl/questions/derived/QuestionLinearScale.py,sha256=oGxTOFITNrFofV468Gow9rtnBMW
|
|
182
182
|
edsl/questions/derived/QuestionTopK.py,sha256=IAmW1kUA1rvW_NH3yxroLfarhl6_QyTEwWZ54gbi6fg,3294
|
183
183
|
edsl/questions/derived/QuestionYesNo.py,sha256=KWJyaXSNPNxELtK0nWvIqNtpAF05MMAC0ILUjxXkVwo,2735
|
184
184
|
edsl/questions/derived/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
185
|
-
edsl/questions/descriptors.py,sha256=
|
185
|
+
edsl/questions/descriptors.py,sha256=4vYWJTlqASBhpjjcW5_jKLojLRU4NsodD4Goj9bqx-Y,18971
|
186
186
|
edsl/questions/loop_processor.py,sha256=h2t8Sn71JBBpim3MaVcZtPTcUsPCBR2aJIpzDFzam5k,4553
|
187
187
|
edsl/questions/prompt_templates/question_budget.jinja,sha256=-ekZYCa_KRc-xLcpf3j-YmXV0WSyIK_laOp2x3li-tA,737
|
188
188
|
edsl/questions/prompt_templates/question_checkbox.jinja,sha256=V-Dn2VJhfXyIILWIhMviTfQ5WuXh1YZerwicaA6Okzc,1136
|
@@ -192,7 +192,7 @@ edsl/questions/prompt_templates/question_linear_scale.jinja,sha256=VB9bFPeLGGb5a
|
|
192
192
|
edsl/questions/prompt_templates/question_list.jinja,sha256=MAkNv88E79jXK9TxKdnf5KgA77CWz9vXc2TZm2r-g-A,495
|
193
193
|
edsl/questions/prompt_templates/question_multiple_choice.jinja,sha256=sSyAhnexZF6oWqHL-45r7o69vrFcCbbYXLZ3zu7q76U,761
|
194
194
|
edsl/questions/prompt_templates/question_numerical.jinja,sha256=c20sp3HfFonfaRwwmnF7HjAEugU15QlgpNAIkNHasl0,1218
|
195
|
-
edsl/questions/question_base_gen_mixin.py,sha256=
|
195
|
+
edsl/questions/question_base_gen_mixin.py,sha256=6cW1Pw8ErAPErWB5iBoWrXIAWj0gRBnfjA_hfeyYefQ,10028
|
196
196
|
edsl/questions/question_registry.py,sha256=H4Q4JYMHn7-_5rU7Ap26N6Ruzz9WSZqOf1b89MScIDI,6352
|
197
197
|
edsl/questions/register_questions_meta.py,sha256=2h_9iZt3cjr_7JRmveTqbmEBBCvjtefMDfhM7Pgd_zg,2598
|
198
198
|
edsl/questions/response_validator_abc.py,sha256=410DIb8Z5uF_xu1lG32OF6X7aoOtL6gG3UIMY83kfeo,6838
|
@@ -243,15 +243,15 @@ edsl/questions/templates/yes_no/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
243
243
|
edsl/questions/templates/yes_no/answering_instructions.jinja,sha256=UAcssfcYeW8zytmPOVJOVQEdwdvlRspE8WnatYvreJQ,172
|
244
244
|
edsl/questions/templates/yes_no/question_presentation.jinja,sha256=hoEVj4GQD3EYnR2AStXkMFOJeqISNoEVzBd8-cx2yWg,273
|
245
245
|
edsl/results/CSSParameterizer.py,sha256=vI3VTgTihJeCYGfmGp7fOhTitHZ17jrDGbq46Sa2rd8,3677
|
246
|
-
edsl/results/Dataset.py,sha256=
|
247
|
-
edsl/results/DatasetExportMixin.py,sha256=
|
246
|
+
edsl/results/Dataset.py,sha256=81Wf7NAlXfOht4cVFFTLo3lMpTqsPtBq7txLBtJESHw,22495
|
247
|
+
edsl/results/DatasetExportMixin.py,sha256=feuNcl8m4GrIZs_P7NMpvTUOxQdZNkraVTQlt_ZkvPU,34041
|
248
248
|
edsl/results/DatasetTree.py,sha256=nvNCF9psLcQ65qsxze7qkrhLn-U-N8OJ327Nf-sFskQ,10178
|
249
249
|
edsl/results/MarkdownToDocx.py,sha256=e8kdDPoqS6Zvd8OTldP9AXbjtmr8BZnro7f0-g1ENi4,4123
|
250
250
|
edsl/results/MarkdownToPDF.py,sha256=RgQ8V86AD_h0HlohUiTWcbL8zOpI8xFC4FK-aOh26HE,3608
|
251
|
-
edsl/results/Result.py,sha256=
|
252
|
-
edsl/results/Results.py,sha256=
|
251
|
+
edsl/results/Result.py,sha256=Rg3SeD2v30zI92jQb25WGgcnyPGcTUXVE5wzeKkLvuQ,22611
|
252
|
+
edsl/results/Results.py,sha256=eo9DgxFklrpUwtAAdzwcM0wG5RlEoEYf-UboAwo6CgY,49087
|
253
253
|
edsl/results/ResultsExportMixin.py,sha256=v9N4pUMrycmKIDzdWn1grmx7F8lxIPAOjfV6OScYSwc,1379
|
254
|
-
edsl/results/ResultsGGMixin.py,sha256
|
254
|
+
edsl/results/ResultsGGMixin.py,sha256=h42-fmicXgGDi71y2kgPSPAS9wTjYYS5_VQELBcp-cM,6625
|
255
255
|
edsl/results/TableDisplay.py,sha256=xGJcotgUqWrmCkQLeD9YIwLrNv7su4VDce3EnllfrLQ,3725
|
256
256
|
edsl/results/TextEditor.py,sha256=8lG6Dh1PDE3Yq_oDvu2zOQHpcQEfLfflSzd04BjHciw,1370
|
257
257
|
edsl/results/__init__.py,sha256=cGvJx1BvGCspUPTKYxKwQDRIoWxFSwHUAfOfuVVti4E,82
|
@@ -265,22 +265,23 @@ edsl/results/table_display.css,sha256=d9HuZYpGvgpDItjYYB0SI88qEPZ4pLgxbhzty_o5Do
|
|
265
265
|
edsl/results/table_renderers.py,sha256=t3ELBYTFLcNJ6iGuQdMwQCxTe9j189AawDMA9YLrTgc,4387
|
266
266
|
edsl/results/tree_explore.py,sha256=hQjiO4E71rIOPDgEHgK8T8ukxqoNdgX_tvyiDlG4_9U,4624
|
267
267
|
edsl/scenarios/ConstructDownloadLink.py,sha256=DGfF6hoCUovpTQ_GWiEndc--fXe9St6UdiaPhj7ZJZw,3529
|
268
|
-
edsl/scenarios/DocumentChunker.py,sha256=
|
268
|
+
edsl/scenarios/DocumentChunker.py,sha256=ox8YhNybeg8Ukn6QuRYM8dsAmtTg5iwTAJSUWEkLnh4,3675
|
269
269
|
edsl/scenarios/DocxScenario.py,sha256=ul3nkX826m_T6LFptswqtnH5czP_yxMlLWgbTmFIZI4,482
|
270
|
-
edsl/scenarios/FileStore.py,sha256=
|
271
|
-
edsl/scenarios/PdfExtractor.py,sha256=
|
272
|
-
edsl/scenarios/Scenario.py,sha256=
|
270
|
+
edsl/scenarios/FileStore.py,sha256=b2DlqLZQ_CaRShzQnlQTEbgjF6vsBZB49qahEwesyzE,18140
|
271
|
+
edsl/scenarios/PdfExtractor.py,sha256=0L3-TizSWglaxT1OBZBEbZoCeMknt8zFhDKzN-TikOI,1922
|
272
|
+
edsl/scenarios/Scenario.py,sha256=01Fv49eVKhXENCrbghDzajmUxYNdoMqE9FV0MMK5beI,19784
|
273
273
|
edsl/scenarios/ScenarioHtmlMixin.py,sha256=5H8MnPPWqlGZ0_Ojv1WjkFaNNRrr-JpCRwlABDBfPXs,2111
|
274
|
-
edsl/scenarios/ScenarioList.py,sha256=
|
274
|
+
edsl/scenarios/ScenarioList.py,sha256=3vCkAKbDU53IX4vVdxZTAB2mCBY-oKCcuKMeGKpNrVs,64253
|
275
275
|
edsl/scenarios/ScenarioListExportMixin.py,sha256=eghBPIi4CmvkPbHV2hpFyE08jtOzuHiKAlt4JC9D81w,1475
|
276
276
|
edsl/scenarios/ScenarioListPdfMixin.py,sha256=6sGXgDYo7e5lv7sB685iq5DS7KSbXNav-k6y6MRYNLM,7725
|
277
277
|
edsl/scenarios/__init__.py,sha256=CQXwTNTIG9jg_pLkDPZgapUFY0_LwZFVQ8HaYvof0Nc,145
|
278
278
|
edsl/scenarios/directory_scanner.py,sha256=eJHPx6pc_No-I-old0vwrNRwNxmgnn3Fr6mht5mp8Fw,3312
|
279
279
|
edsl/scenarios/file_methods.py,sha256=HeusyoXOi2Bb0Bfp8MVDWKMFpe_ipP-cxENiRrSKZQU,2621
|
280
|
-
edsl/scenarios/handlers/__init__.py,sha256=
|
280
|
+
edsl/scenarios/handlers/__init__.py,sha256=8EDLVVJibC0_Nwkbfwpg7o48bAfZ_ENmE2NJEuPvWNo,414
|
281
281
|
edsl/scenarios/handlers/csv.py,sha256=5W2fWa6FAL_QGTYTVLFaiEr28f6W7FaF-a9drsklSfc,1383
|
282
|
-
edsl/scenarios/handlers/docx.py,sha256=
|
282
|
+
edsl/scenarios/handlers/docx.py,sha256=KWMmGxtAE4mvwCeKvWZ-0nOKOr7l_QJycK7mz3Coq8w,2361
|
283
283
|
edsl/scenarios/handlers/html.py,sha256=zXipNAYcQE4LRBrKZC9L_tkY1snxQe8ciJ2S1diyMcM,927
|
284
|
+
edsl/scenarios/handlers/jpeg.py,sha256=9qhCiLhsh2aLLnM1_6g8t88DACS3Uj5p6LI-qD2WdaY,1148
|
284
285
|
edsl/scenarios/handlers/json.py,sha256=hlZMHYwwuFrV9bGdbn8MNAjgBFue6l5W2TwCfyxSjZ0,3682
|
285
286
|
edsl/scenarios/handlers/latex.py,sha256=MdCdI04AXM7Z6b_ZVgHM3BP_2moWvoHKOmmr24Od-Qk,94
|
286
287
|
edsl/scenarios/handlers/md.py,sha256=dhMTQy0b6PauXu5S_VGBgsqPNFFs5QbxqM6yjHRFxC8,1488
|
@@ -310,10 +311,10 @@ edsl/surveys/Rule.py,sha256=Hou5_sSpvIfBdZNQk8tHFf-q4JT0wrV_kPMGbmLBfgA,12403
|
|
310
311
|
edsl/surveys/RuleCollection.py,sha256=UC300EOPhjrMc-88eWt5kKBg1pVvKzzwgda2hjHW_sk,14790
|
311
312
|
edsl/surveys/RuleManager.py,sha256=8k1XfTWaJbgjLLJsryBxVSiZ2_YuJPqE750jZEEtVwI,6216
|
312
313
|
edsl/surveys/Simulator.py,sha256=I4_vHNnwe43SAbw7CK1xa45tahAKHfNRbRxGTRXdHuA,2586
|
313
|
-
edsl/surveys/Survey.py,sha256=
|
314
|
+
edsl/surveys/Survey.py,sha256=ebzPn3wfrt09XrjGjLDNrpuQu3Ds87oqtjyqKfCmxAk,48674
|
314
315
|
edsl/surveys/SurveyCSS.py,sha256=fIdiLuXTUq6KuoXXAU_LTHTTe6RchnCmZpj3j7qnt5Y,8796
|
315
316
|
edsl/surveys/SurveyExportMixin.py,sha256=Kvkd2ku2Kemsn2Nw-Yt8GTnGFcUqfEiKznmisAeO7ck,8339
|
316
|
-
edsl/surveys/SurveyFlowVisualization.py,sha256=
|
317
|
+
edsl/surveys/SurveyFlowVisualization.py,sha256=Dbkgo-6PBwZ-l2Ok-6dl79CP1JNrqcm04Z4y5ZgKJ-o,8858
|
317
318
|
edsl/surveys/SurveyQualtricsImport.py,sha256=SSZv53D1zVhQSfSw-X0_cte0QnkWhE9v922wLn6RMkI,9771
|
318
319
|
edsl/surveys/SurveyToApp.py,sha256=J6n6qhVpIkBvAMSnARQ3sS3zdO5NGisMuZsqR38uFfY,4745
|
319
320
|
edsl/surveys/__init__.py,sha256=NkZrNIiKPf2EnQ1ZJeMSSTZu5UC0zfgfzkK4Pxj_wpk,196
|
@@ -327,12 +328,12 @@ edsl/templates/error_reporting/base.html,sha256=JDOZu8tkrSgVqGwhjaYoiHXrpxisVtYW
|
|
327
328
|
edsl/templates/error_reporting/exceptions_by_model.html,sha256=7uAWGfhUMey-29Vh6YkN_Qx1lfhC92fsTMxJEVXWPDs,792
|
328
329
|
edsl/templates/error_reporting/exceptions_by_question_name.html,sha256=_q6hSwtO_WhjXLZNLZhRj-qbPzStqYSzT0iECKUAFlg,454
|
329
330
|
edsl/templates/error_reporting/exceptions_by_type.html,sha256=TVsNCAz_G53LSZ-YslM51TUsbwtw7wzCqPwVYO6TVEw,415
|
330
|
-
edsl/templates/error_reporting/exceptions_table.html,sha256=
|
331
|
-
edsl/templates/error_reporting/interview_details.html,sha256=
|
332
|
-
edsl/templates/error_reporting/interviews.html,sha256=
|
333
|
-
edsl/templates/error_reporting/overview.html,sha256=
|
334
|
-
edsl/templates/error_reporting/performance_plot.html,sha256=
|
335
|
-
edsl/templates/error_reporting/report.css,sha256=
|
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
|
336
337
|
edsl/templates/error_reporting/report.html,sha256=CWygdoBM-QXNI8HtqaQMfzspMSn4lUVRTXf6NA9ggqo,4523
|
337
338
|
edsl/templates/error_reporting/report.js,sha256=PtF1N68RmSYB2OG-6ymO14-LcX7LUZTnUDFX0dN6xW4,957
|
338
339
|
edsl/tools/__init__.py,sha256=4iRiX1K0Yh8RGwlUBuzipvFfRrofKqCRQ0SzNK_2oiQ,41
|
@@ -341,7 +342,7 @@ edsl/tools/embeddings.py,sha256=-mHqApiFbGzj_2Cr_VVl_7XiBBDyPB5-6ZO7IsXvaig,677
|
|
341
342
|
edsl/tools/embeddings_plotting.py,sha256=fznAqLnjF_K8PkJy1C4hBRObm3f8ebDIxQzrqRXlEJM,3564
|
342
343
|
edsl/tools/plotting.py,sha256=NrYiOLHLgXnIdnBDYlRDKtLRZndW767fpvKVamIugwI,3129
|
343
344
|
edsl/tools/summarize.py,sha256=YcdB0IjZn92qv2zVJuxsHfXou810APWYKeaHknsATqM,656
|
344
|
-
edsl/utilities/PrettyList.py,sha256=
|
345
|
+
edsl/utilities/PrettyList.py,sha256=Nbq0o8E_E3VITyhf6Te9c8JfrWkI1Ivaq2xUwWxxfCs,2052
|
345
346
|
edsl/utilities/SystemInfo.py,sha256=qTP_aKwECPxtTnbEjJ7F1QqKU9U3rcEEbppg2ilQGuY,792
|
346
347
|
edsl/utilities/__init__.py,sha256=oUWx_h-8OFb1Of2SgIQZuIu7hX_bhDuwCSwksKGWZ6k,544
|
347
348
|
edsl/utilities/ast_utilities.py,sha256=49KDDu-PHYpzDN5cCaDf-ReQH-1dzjT5EG3WVSa8THk,868
|
@@ -359,7 +360,7 @@ edsl/utilities/remove_edsl_version.py,sha256=3n2RoXvZ4pH3k-_lc7B-vkeUyHXHX6vKHQS
|
|
359
360
|
edsl/utilities/repair_functions.py,sha256=tftmklAqam6LOQQu_-9U44N-llycffhW8LfO63vBmNw,929
|
360
361
|
edsl/utilities/restricted_python.py,sha256=5-_zUhrNbos7pLhDl9nr8d24auRlquR6w-vKkmNjPiA,2060
|
361
362
|
edsl/utilities/utilities.py,sha256=FbI9QYGD4eaHrwZ6ePx51jjpatZqwSPHJhimx-h6HyA,12660
|
362
|
-
edsl-0.1.
|
363
|
-
edsl-0.1.
|
364
|
-
edsl-0.1.
|
365
|
-
edsl-0.1.
|
363
|
+
edsl-0.1.46.dist-info/LICENSE,sha256=_qszBDs8KHShVYcYzdMz3HNMtH-fKN_p5zjoVAVumFc,1111
|
364
|
+
edsl-0.1.46.dist-info/METADATA,sha256=wW_pf23hhU4pqonWNG2zphg8ppEvE8mcHwM3Em5B5BE,11695
|
365
|
+
edsl-0.1.46.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
366
|
+
edsl-0.1.46.dist-info/RECORD,,
|
edsl-0.1.44.dist-info/METADATA
DELETED
@@ -1,110 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: edsl
|
3
|
-
Version: 0.1.44
|
4
|
-
Summary: Create and analyze LLM-based surveys
|
5
|
-
Home-page: https://www.expectedparrot.com/
|
6
|
-
License: MIT
|
7
|
-
Keywords: LLM,social science,surveys,user research
|
8
|
-
Author: Apostolos Filippas
|
9
|
-
Author-email: apostolos@expectedparrot.com
|
10
|
-
Requires-Python: >=3.9.1,<3.13
|
11
|
-
Classifier: License :: OSI Approved :: MIT License
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
13
|
-
Classifier: Programming Language :: Python :: 3.10
|
14
|
-
Classifier: Programming Language :: Python :: 3.11
|
15
|
-
Classifier: Programming Language :: Python :: 3.12
|
16
|
-
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
17
|
-
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
18
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
19
|
-
Requires-Dist: aiohttp (>=3.9.1,<4.0.0)
|
20
|
-
Requires-Dist: anthropic (>=0.45.0,<0.46.0)
|
21
|
-
Requires-Dist: azure-ai-inference (>=1.0.0b3,<2.0.0)
|
22
|
-
Requires-Dist: black[jupyter] (>=24.4.2,<25.0.0)
|
23
|
-
Requires-Dist: boto3 (>=1.34.161,<2.0.0)
|
24
|
-
Requires-Dist: google-generativeai (>=0.8.2,<0.9.0)
|
25
|
-
Requires-Dist: groq (>=0.9.0,<0.10.0)
|
26
|
-
Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
|
27
|
-
Requires-Dist: json-repair (>=0.28.4,<0.29.0)
|
28
|
-
Requires-Dist: jupyter (>=1.0.0,<2.0.0)
|
29
|
-
Requires-Dist: markdown2 (>=2.4.11,<3.0.0)
|
30
|
-
Requires-Dist: matplotlib (>=3.8,<3.9)
|
31
|
-
Requires-Dist: mistralai (>=1.0.2,<2.0.0)
|
32
|
-
Requires-Dist: nest-asyncio (>=1.5.9,<2.0.0)
|
33
|
-
Requires-Dist: numpy (>=1.22,<2.0)
|
34
|
-
Requires-Dist: openai (>=1.4.0,<2.0.0)
|
35
|
-
Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
|
36
|
-
Requires-Dist: pandas (>=2.1.4,<3.0.0)
|
37
|
-
Requires-Dist: platformdirs (>=4.3.6,<5.0.0)
|
38
|
-
Requires-Dist: pydot (>=2.0.0,<3.0.0)
|
39
|
-
Requires-Dist: pygments (>=2.17.2,<3.0.0)
|
40
|
-
Requires-Dist: pypdf2 (>=3.0.1,<4.0.0)
|
41
|
-
Requires-Dist: pyreadstat (>=1.2.7,<2.0.0)
|
42
|
-
Requires-Dist: python-docx (>=1.1.0,<2.0.0)
|
43
|
-
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
|
44
|
-
Requires-Dist: python-pptx (>=1.0.2,<2.0.0)
|
45
|
-
Requires-Dist: restrictedpython (>=7.1,<8.0)
|
46
|
-
Requires-Dist: rich (>=13.7.0,<14.0.0)
|
47
|
-
Requires-Dist: setuptools (<72.0)
|
48
|
-
Requires-Dist: simpleeval (>=0.9.13,<0.10.0)
|
49
|
-
Requires-Dist: sqlalchemy (>=2.0.23,<3.0.0)
|
50
|
-
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
|
51
|
-
Requires-Dist: tenacity (>=8.2.3,<9.0.0)
|
52
|
-
Requires-Dist: urllib3 (>=1.25.4,<1.27)
|
53
|
-
Project-URL: Documentation, https://docs.expectedparrot.com
|
54
|
-
Description-Content-Type: text/markdown
|
55
|
-
|
56
|
-
# Expected Parrot Domain-Specific Language
|
57
|
-
<p align="center">
|
58
|
-
<img src="https://github.com/expectedparrot/edsl/blob/main/static/logo.png?raw=true" alt="edsl.png" width="100"/>
|
59
|
-
</p>
|
60
|
-
|
61
|
-
The Expected Parrot Domain-Specific Language (EDSL) package lets you conduct computational social science and market research with AI. Use it to design surveys and experiments, simulate responses with large language models, and perform data labeling and other research tasks. Results are formatted as specified datasets and come with built-in methods for analyzing, visualizing, and sharing.
|
62
|
-
|
63
|
-
## 🔗 Links
|
64
|
-
- [PyPI](https://pypi.org/project/edsl/)
|
65
|
-
- [Documentation](https://docs.expectedparrot.com)
|
66
|
-
- [Getting started](https://docs.expectedparrot.com/en/latest/starter_tutorial.html)
|
67
|
-
- [Discord](https://discord.com/invite/mxAYkjfy9m)
|
68
|
-
- [Twitter](https://x.com/ExpectedParrot)
|
69
|
-
- [LinkedIn](https://www.linkedin.com/company/expectedparrot/)
|
70
|
-
- [Blog](https://blog.expectedparrot.com)
|
71
|
-
|
72
|
-
## 🌎 Hello, World!
|
73
|
-
A quick example:
|
74
|
-
|
75
|
-
```python
|
76
|
-
# Import a question type
|
77
|
-
from edsl import QuestionMultipleChoice
|
78
|
-
|
79
|
-
# Construct a question using the question type template
|
80
|
-
q = QuestionMultipleChoice(
|
81
|
-
question_name="example_question",
|
82
|
-
question_text="How do you feel today?",
|
83
|
-
question_options=["Bad", "OK", "Good"]
|
84
|
-
)
|
85
|
-
|
86
|
-
# Run it with the default language model
|
87
|
-
results = q.run()
|
88
|
-
|
89
|
-
# Inspect the results
|
90
|
-
results.select("example_question")
|
91
|
-
```
|
92
|
-
|
93
|
-
Output:
|
94
|
-
```python
|
95
|
-
┏━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
96
|
-
┃ answer.example_question ┃
|
97
|
-
┡━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
98
|
-
│ Good │
|
99
|
-
└─────────────────────────┘
|
100
|
-
```
|
101
|
-
|
102
|
-
## 💻 Requirements
|
103
|
-
* EDSL is compatible with Python 3.9 - 3.12.
|
104
|
-
* API keys for large language models that you want to use, stored in a `.env` file.
|
105
|
-
See instructions on [storing API keys](https://docs.expectedparrot.com/en/latest/api_keys.html) and [activating remote inference](https://docs.expectedparrot.com/en/latest/remote_inference.html).
|
106
|
-
|
107
|
-
## 💡 Contributions, feature requests & bugs
|
108
|
-
Interested in contributing? Want us to add a new feature? Found a bug for us to squash?
|
109
|
-
Please send us an email at [info@expectedparrot.com](mailto:info@expectedparrot.com) or message us at our [Discord channel](https://discord.com/invite/mxAYkjfy9m).
|
110
|
-
|
File without changes
|
File without changes
|