eval-protocol 0.0.3__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 (130) hide show
  1. development/__init__.py +1 -0
  2. development/normalize_sandbox_fusion.py +628 -0
  3. development/utils/__init__.py +1 -0
  4. development/utils/generate_api_key.py +31 -0
  5. development/utils/subprocess_manager.py +481 -0
  6. eval_protocol/__init__.py +86 -0
  7. eval_protocol/__main__.py +10 -0
  8. eval_protocol/_version.py +21 -0
  9. eval_protocol/adapters/__init__.py +1 -0
  10. eval_protocol/adapters/braintrust.py +8 -0
  11. eval_protocol/adapters/trl.py +8 -0
  12. eval_protocol/agent/__init__.py +29 -0
  13. eval_protocol/agent/models.py +69 -0
  14. eval_protocol/agent/orchestrator.py +893 -0
  15. eval_protocol/agent/resource_abc.py +89 -0
  16. eval_protocol/agent/resource_pool.py +184 -0
  17. eval_protocol/agent/resources/__init__.py +44 -0
  18. eval_protocol/agent/resources/bfcl_envs/__init__.py +1 -0
  19. eval_protocol/agent/resources/bfcl_envs/gorilla_file_system.py +342 -0
  20. eval_protocol/agent/resources/bfcl_envs/math_api.py +40 -0
  21. eval_protocol/agent/resources/bfcl_envs/posting_api.py +157 -0
  22. eval_protocol/agent/resources/bfcl_sim_api_resource.py +314 -0
  23. eval_protocol/agent/resources/docker_resource.py +479 -0
  24. eval_protocol/agent/resources/filesystem_resource.py +371 -0
  25. eval_protocol/agent/resources/http_rollout_protocol.py +85 -0
  26. eval_protocol/agent/resources/http_rollout_resource.py +325 -0
  27. eval_protocol/agent/resources/python_state_resource.py +170 -0
  28. eval_protocol/agent/resources/sql_resource.py +271 -0
  29. eval_protocol/agent/task_manager.py +1064 -0
  30. eval_protocol/agent/tool_registry.py +111 -0
  31. eval_protocol/auth.py +156 -0
  32. eval_protocol/cli.py +425 -0
  33. eval_protocol/cli_commands/__init__.py +1 -0
  34. eval_protocol/cli_commands/agent_eval_cmd.py +264 -0
  35. eval_protocol/cli_commands/common.py +242 -0
  36. eval_protocol/cli_commands/deploy.py +486 -0
  37. eval_protocol/cli_commands/deploy_mcp.py +287 -0
  38. eval_protocol/cli_commands/preview.py +186 -0
  39. eval_protocol/cli_commands/run_eval_cmd.py +202 -0
  40. eval_protocol/common_utils.py +36 -0
  41. eval_protocol/config.py +180 -0
  42. eval_protocol/datasets/__init__.py +1 -0
  43. eval_protocol/datasets/loader.py +521 -0
  44. eval_protocol/evaluation.py +1045 -0
  45. eval_protocol/execution/__init__.py +1 -0
  46. eval_protocol/execution/pipeline.py +920 -0
  47. eval_protocol/gcp_tools.py +484 -0
  48. eval_protocol/generation/cache.py +141 -0
  49. eval_protocol/generation/clients/base.py +67 -0
  50. eval_protocol/generation/clients.py +248 -0
  51. eval_protocol/generic_server.py +165 -0
  52. eval_protocol/integrations/__init__.py +12 -0
  53. eval_protocol/integrations/braintrust.py +51 -0
  54. eval_protocol/integrations/deepeval.py +106 -0
  55. eval_protocol/integrations/openeval.py +40 -0
  56. eval_protocol/integrations/trl.py +187 -0
  57. eval_protocol/mcp/__init__.py +48 -0
  58. eval_protocol/mcp/adapter.py +131 -0
  59. eval_protocol/mcp/client/__init__.py +12 -0
  60. eval_protocol/mcp/client/connection.py +499 -0
  61. eval_protocol/mcp/clients.py +195 -0
  62. eval_protocol/mcp/execution/__init__.py +23 -0
  63. eval_protocol/mcp/execution/base_policy.py +227 -0
  64. eval_protocol/mcp/execution/fireworks_policy.py +209 -0
  65. eval_protocol/mcp/execution/manager.py +506 -0
  66. eval_protocol/mcp/execution/policy.py +421 -0
  67. eval_protocol/mcp/grid_renderer.py +54 -0
  68. eval_protocol/mcp/mcpgym.py +637 -0
  69. eval_protocol/mcp/process_manager.py +177 -0
  70. eval_protocol/mcp/session/__init__.py +11 -0
  71. eval_protocol/mcp/session/manager.py +228 -0
  72. eval_protocol/mcp/simple_process_manager.py +291 -0
  73. eval_protocol/mcp/simulation_server.py +458 -0
  74. eval_protocol/mcp/types.py +80 -0
  75. eval_protocol/mcp_agent/__init__.py +1 -0
  76. eval_protocol/mcp_agent/config.py +147 -0
  77. eval_protocol/mcp_agent/intermediary_server.py +542 -0
  78. eval_protocol/mcp_agent/main.py +210 -0
  79. eval_protocol/mcp_agent/orchestration/__init__.py +1 -0
  80. eval_protocol/mcp_agent/orchestration/base_client.py +132 -0
  81. eval_protocol/mcp_agent/orchestration/local_docker_client.py +702 -0
  82. eval_protocol/mcp_agent/orchestration/remote_http_client.py +304 -0
  83. eval_protocol/mcp_agent/orchestration/stdio_mcp_client_helper.py +3 -0
  84. eval_protocol/mcp_agent/session.py +79 -0
  85. eval_protocol/mcp_env.py +304 -0
  86. eval_protocol/models.py +366 -0
  87. eval_protocol/packaging.py +219 -0
  88. eval_protocol/platform_api.py +360 -0
  89. eval_protocol/playback_policy.py +396 -0
  90. eval_protocol/resources.py +128 -0
  91. eval_protocol/reward_function.py +410 -0
  92. eval_protocol/rewards/__init__.py +94 -0
  93. eval_protocol/rewards/accuracy.py +454 -0
  94. eval_protocol/rewards/accuracy_length.py +173 -0
  95. eval_protocol/rewards/apps_coding_reward.py +331 -0
  96. eval_protocol/rewards/apps_execution_utils.py +149 -0
  97. eval_protocol/rewards/apps_testing_util.py +559 -0
  98. eval_protocol/rewards/bfcl_reward.py +313 -0
  99. eval_protocol/rewards/code_execution.py +1620 -0
  100. eval_protocol/rewards/code_execution_utils.py +72 -0
  101. eval_protocol/rewards/cpp_code.py +861 -0
  102. eval_protocol/rewards/deepcoder_reward.py +161 -0
  103. eval_protocol/rewards/format.py +129 -0
  104. eval_protocol/rewards/function_calling.py +541 -0
  105. eval_protocol/rewards/json_schema.py +422 -0
  106. eval_protocol/rewards/language_consistency.py +700 -0
  107. eval_protocol/rewards/lean_prover.py +479 -0
  108. eval_protocol/rewards/length.py +375 -0
  109. eval_protocol/rewards/list_comparison_math_reward.py +221 -0
  110. eval_protocol/rewards/math.py +762 -0
  111. eval_protocol/rewards/multiple_choice_math_reward.py +232 -0
  112. eval_protocol/rewards/reasoning_steps.py +249 -0
  113. eval_protocol/rewards/repetition.py +342 -0
  114. eval_protocol/rewards/tag_count.py +162 -0
  115. eval_protocol/rl_processing.py +82 -0
  116. eval_protocol/server.py +271 -0
  117. eval_protocol/typed_interface.py +260 -0
  118. eval_protocol/utils/__init__.py +8 -0
  119. eval_protocol/utils/batch_evaluation.py +217 -0
  120. eval_protocol/utils/batch_transformation.py +205 -0
  121. eval_protocol/utils/dataset_helpers.py +112 -0
  122. eval_protocol/utils/module_loader.py +56 -0
  123. eval_protocol/utils/packaging_utils.py +108 -0
  124. eval_protocol/utils/static_policy.py +305 -0
  125. eval_protocol-0.0.3.dist-info/METADATA +635 -0
  126. eval_protocol-0.0.3.dist-info/RECORD +130 -0
  127. eval_protocol-0.0.3.dist-info/WHEEL +5 -0
  128. eval_protocol-0.0.3.dist-info/entry_points.txt +4 -0
  129. eval_protocol-0.0.3.dist-info/licenses/LICENSE +201 -0
  130. eval_protocol-0.0.3.dist-info/top_level.txt +2 -0
@@ -0,0 +1,130 @@
1
+ development/__init__.py,sha256=If3HzbZzu_ySl456p_YZK-w9L2fI9bObPEBe84UtXUM,64
2
+ development/normalize_sandbox_fusion.py,sha256=ii2G-pcwpdTOoYNC1AKjmZytwXrkSzYWdPrPYPK13_8,25324
3
+ development/utils/__init__.py,sha256=5_3ae0whpBdWIYreHlWCc2H9BCCsQfuVFSKZbxXID60,79
4
+ development/utils/generate_api_key.py,sha256=hHCMFkzW4yxqwcn2ct5diDm-PR9cMX9XP7IYieZvH5U,869
5
+ development/utils/subprocess_manager.py,sha256=DpyM1NwEh1UHlMi1jr980f2mAWd7gKLDunplgGRUqSw,19548
6
+ eval_protocol/__init__.py,sha256=J3vYKHqAzrUcnZEvkW1mjZ7vCnkHCXK7uKegELCveJs,2327
7
+ eval_protocol/__main__.py,sha256=KmpdZwyJbCf40Qso6uyJecMBQMPC4ZqLYt_x9-U0ig4,158
8
+ eval_protocol/_version.py,sha256=LC_Ha1BWI7agj1uW1_S7-eYesDfeibvQWMbVTLd6Tq8,497
9
+ eval_protocol/auth.py,sha256=6KOY-IIfrYkWmvZj3N0qrVHHCGbOFmcr2F73ZxIoYTg,5854
10
+ eval_protocol/cli.py,sha256=T1clzHXzW6IXMtHT5Inz0W4Gs5RdKeWM9uEm0x-2qjc,17207
11
+ eval_protocol/common_utils.py,sha256=3bsEkGexqiWKLS0DwOsVVfOgti0IskliX_JClM-QnVw,1382
12
+ eval_protocol/config.py,sha256=Uzm1eXxtUqlIIWSojqD-CHfmA_54_aSPU4Ekhf2EY0Y,6440
13
+ eval_protocol/evaluation.py,sha256=hKVA-j-vFanUGxJpp9xnZiorjiyUthTOLgbWi5-cg70,48274
14
+ eval_protocol/gcp_tools.py,sha256=1ytwTQLnUVIO_aBm_jMn61Fuy94CNQcPkyWtTLEU5yo,20286
15
+ eval_protocol/generic_server.py,sha256=zT6tc6ZrrHJClP8DbDA9QRL0ELuxZwB9Pku7kCqcQCc,6676
16
+ eval_protocol/mcp_env.py,sha256=nndFELN8oq2vK8T5EWh2Q9kUTd1-mkce9BE3C_p9doY,11246
17
+ eval_protocol/models.py,sha256=mcjqKe5qvToBHUSU-s256B1S3ZwA4FKf6d8ozH2XBJE,14750
18
+ eval_protocol/packaging.py,sha256=hV3M-uAP2bvAjrSfVoix8HjB4Ak8UMsFlVUEUhmEzlk,10183
19
+ eval_protocol/platform_api.py,sha256=1ddoK3RdFrle-MlFBVqyrqGdg-MNQeeJlEF3ftSgoVw,17596
20
+ eval_protocol/playback_policy.py,sha256=7mWq-HA7Lc2Xai7XH7Jle2muYgqRE_AkCsgWldYSIpc,15161
21
+ eval_protocol/resources.py,sha256=EScyOyM77FOUJ1E855JgL35swSJ440yJzhYp6VRLduo,3922
22
+ eval_protocol/reward_function.py,sha256=RCSw_lowWaqMrIzX35JlcFTuKxxQi9f_e5MrdDNOUB0,18854
23
+ eval_protocol/rl_processing.py,sha256=MNZjsqXzBeecVozR0zWYZjeLHPWwYH2MzEaZRx50jUM,3894
24
+ eval_protocol/server.py,sha256=X_lZx8a5qQFPLs8Si209kHqRs-IVglcJ6yJYBOBFSC4,9862
25
+ eval_protocol/typed_interface.py,sha256=AT-ZoyxdB8w4LC_VfqwBZV6stw4hgZ13nWIm9tPXNPo,12682
26
+ eval_protocol/adapters/__init__.py,sha256=rZDriN03og0hBbeohgdal-MVw8cbLTxNfP4E82ul6VI,61
27
+ eval_protocol/adapters/braintrust.py,sha256=OAK9rGYxqOMW9QJEwnkxTBkVVkJrpqpbJKMX6HgD3fY,268
28
+ eval_protocol/adapters/trl.py,sha256=LRZjeCKV306Y30IiYV7zG0_qJFSTuFJrAoFRnv5yp2g,201
29
+ eval_protocol/agent/__init__.py,sha256=o2PxntXFFrirMl2dSjNZkNtAab1qEllU1XwaTZuTIu8,726
30
+ eval_protocol/agent/models.py,sha256=0W4M4d2lWTgrt4Ummrmo9xJp8baN_UVR3WvndY4Qntg,3021
31
+ eval_protocol/agent/orchestrator.py,sha256=teDI9ToYGF8Xed7zXRmg3e3Ashu5vdM_S5xyVNbP3M4,48679
32
+ eval_protocol/agent/resource_abc.py,sha256=IxWu_H9K4BaB2LTPHxusIDZHDYVL5j7qtii_OBRC35s,3045
33
+ eval_protocol/agent/resource_pool.py,sha256=tvG-tAVtbmU8VWpDp4VgYGdGaXzEu9zGFjQkUVd_3PU,6969
34
+ eval_protocol/agent/task_manager.py,sha256=gBhRsR1LZNFPjhldco8K8kRxEPMpAGcdPH_6gl_5S0Q,47401
35
+ eval_protocol/agent/tool_registry.py,sha256=LSAE66lQL2WZDoE0nXavJnyJWZiSuvx7ZsGDOniowvY,3303
36
+ eval_protocol/agent/resources/__init__.py,sha256=YSZ_sEEnUI0vD8d6S4VfvzZHjhzd6aW2nKk3cPOxZMQ,1132
37
+ eval_protocol/agent/resources/bfcl_sim_api_resource.py,sha256=JHeRWPnr3PbInpIk4l79s-0THNWZiDiwW9jxxqbUv14,16704
38
+ eval_protocol/agent/resources/docker_resource.py,sha256=HKwu49Ud0WK-iz64yry4QTaEm1yolldTu_kDeEVf8Rg,20642
39
+ eval_protocol/agent/resources/filesystem_resource.py,sha256=xf401Rq_J3CljOYIIQ-J_4pj81_xQikgKa1GUoMwMgM,16394
40
+ eval_protocol/agent/resources/http_rollout_protocol.py,sha256=X1Nh0FifWiLFIeLjOBcs_8E5qoTpyk592DPD_wQemmo,2097
41
+ eval_protocol/agent/resources/http_rollout_resource.py,sha256=QM8YyOMg6PCNYHo8eqi-zrtaLpg-kUDrKa7F6DgEl_c,11861
42
+ eval_protocol/agent/resources/python_state_resource.py,sha256=W_rK_6xdgBw3_ew-h3hrM3XOhQHBBWhrupEvfg3hO2M,6099
43
+ eval_protocol/agent/resources/sql_resource.py,sha256=b4EqPspn0OqkygFXZuQlcBnxNlWhfLQZ4NP9VtG5FwQ,11769
44
+ eval_protocol/agent/resources/bfcl_envs/__init__.py,sha256=KUR7SDnX25WxqwkBsp1mO2LYVgfAFNtkdLIsOttuhws,35
45
+ eval_protocol/agent/resources/bfcl_envs/gorilla_file_system.py,sha256=H112U6Fge-oIbcm5kLxHL_pqEIiGahmSnykMXwLIIjE,14862
46
+ eval_protocol/agent/resources/bfcl_envs/math_api.py,sha256=XcanEoJ8XFBQgR6_d9sdm-4ggR8A_ZNoCpcPs-hGWTg,1048
47
+ eval_protocol/agent/resources/bfcl_envs/posting_api.py,sha256=uoeCByTF4kjLiwu6wYYdfiEn3ut_2WzRGjbAk21GrDM,5291
48
+ eval_protocol/cli_commands/__init__.py,sha256=XYAFq-qJ787pmrMiouG_jd9uwZcRhxLtNLSTxKcHzCM,85
49
+ eval_protocol/cli_commands/agent_eval_cmd.py,sha256=EuC5KRfGarEZKkxIjRftRx9UvNAf1sztau9SU1lcqKc,11202
50
+ eval_protocol/cli_commands/common.py,sha256=Ga17i5MCk__YL9ct766qge4Eh0IMqAwrmR5iC9xiDg8,10152
51
+ eval_protocol/cli_commands/deploy.py,sha256=mZFFR3KIG52dW_XIjSDFqqZJhLhAyVHKoJ_8NvB9OEs,23076
52
+ eval_protocol/cli_commands/deploy_mcp.py,sha256=qP4oZ4_9xaKCzFVuKas6c-ijHazfTQIQzchcbEfvalU,9999
53
+ eval_protocol/cli_commands/preview.py,sha256=A1SCTI84j89iuBub_Zf_VzxRvgXFN5IBOdtUqhZcyJc,8066
54
+ eval_protocol/cli_commands/run_eval_cmd.py,sha256=rJn-pGlPbWcXljywH78kif7r_m_CW84LjGa7xyKgNvo,9725
55
+ eval_protocol/datasets/__init__.py,sha256=wH5G-kaU8ehZDhxd0f2mdxnBD3DqYEyRvD-wNwegllM,48
56
+ eval_protocol/datasets/loader.py,sha256=g5Dc4VEKsg0m_Mdcazo_sq9Yg1E-3bHQByQWFeftOpM,24174
57
+ eval_protocol/execution/__init__.py,sha256=sC-ioSuzdarEqNf6_mGzH1HwYvv_8sHCcKrnUp8fniQ,58
58
+ eval_protocol/execution/pipeline.py,sha256=emisVuWv3T7JNN8R3HcnLOTXZKJESvvlLqU4_ynZYhk,46121
59
+ eval_protocol/generation/cache.py,sha256=BMW5mN46FAznuodICud-Mf5e82bcvVJ6vdGD4Sheu6k,4879
60
+ eval_protocol/generation/clients.py,sha256=9JChiTgOl1e40k6qJHqyfeyH-hxamTiIRi54qpJeTm8,13840
61
+ eval_protocol/generation/clients/base.py,sha256=WvLPMvDhgPE-wceKS5IF11kt5oglqBAlO3Q8Who3V6U,2378
62
+ eval_protocol/integrations/__init__.py,sha256=TiOR89dJ9e0mej-FsorIgc3vIC-8F0Tmb1TY-u6opDw,280
63
+ eval_protocol/integrations/braintrust.py,sha256=_GsazPSxGvwLtsiZW_lmRLqI8YxkrU0_EflH7ymZ3l0,2002
64
+ eval_protocol/integrations/deepeval.py,sha256=K8RPZl_OsQuH6--DYCq_yiDlwG5gGpM-RjezdgYPDYA,4258
65
+ eval_protocol/integrations/openeval.py,sha256=SH0kDZbe81DGsEzveap6RIfVymW9rPCPr57u8jcryOw,1439
66
+ eval_protocol/integrations/trl.py,sha256=Hg0dldAZo1AJPrmhmDBlynZkvJslxvKakVxCpUucSVc,9392
67
+ eval_protocol/mcp/__init__.py,sha256=WCOVLrGwsuO7GFRBqDGZMOYDoSovOODfdy5PKsWfyVs,1351
68
+ eval_protocol/mcp/adapter.py,sha256=aXETSXkOKFg8QdYcfcpJoDMqdwgmaEKrjCkHui-aO3o,4020
69
+ eval_protocol/mcp/clients.py,sha256=d5Kx3q96K9wE0pPTmozCYICvLAz40xyobn33PDGlGcU,8796
70
+ eval_protocol/mcp/grid_renderer.py,sha256=xNyXJHePIVhTlpwjRY0X7Q_nOCTSKfk6XojylJfZvq0,1647
71
+ eval_protocol/mcp/mcpgym.py,sha256=5aLXbnpvoPs2Y_sPpBPodwbduLIO0jVQMysrtd8Ne24,26806
72
+ eval_protocol/mcp/process_manager.py,sha256=s2JK1ieI8UFz21xRsXt2i6Mtq7yOaC1JHQGMwdhYZDA,6220
73
+ eval_protocol/mcp/simple_process_manager.py,sha256=jFV-5zBoVmJ__8q1WPUNWRxHVS_arflnLdrpCV1fEOY,10957
74
+ eval_protocol/mcp/simulation_server.py,sha256=7-_iD6znZzP9b5-3C-ZUV-moCtbr4EoACBeOAg8YzAU,18632
75
+ eval_protocol/mcp/types.py,sha256=Au4vtGYW3iR_0pnZdz3qxcfdgf-eycjHjbe8gvC8ZTk,2039
76
+ eval_protocol/mcp/client/__init__.py,sha256=BKTZOgfibqYhLlODdYbaPgy3BFBBCL6sU0Lz4bAOZsU,228
77
+ eval_protocol/mcp/client/connection.py,sha256=DWk6s61VC-W1KYitkG3qkHWbEfN6xTaT7eycjzeeFWc,23053
78
+ eval_protocol/mcp/execution/__init__.py,sha256=fz7-5FyC7jkI2wMXdkrPpF9bBm9fnbjzbtl0GyElgQY,581
79
+ eval_protocol/mcp/execution/base_policy.py,sha256=1s2J3AKXAnvSClWswyQcqo8SlKz0XCfC_JHMKe6xYGk,8047
80
+ eval_protocol/mcp/execution/fireworks_policy.py,sha256=oNwF9Kp_2Qm43fNWHg_6Z_IleCr2ojy6noClTx-idTU,7670
81
+ eval_protocol/mcp/execution/manager.py,sha256=bN0RwttN97xLpDmE_h8M9Q-mgrR8_j-an6XxatS2AtQ,21236
82
+ eval_protocol/mcp/execution/policy.py,sha256=6ESAYlZZ0BR4jFi1_aprfiIcPXxroOky2oHI2Z0YgZc,15960
83
+ eval_protocol/mcp/session/__init__.py,sha256=fBJDSceynNOpcwA4ZrU1pVbqzT1NYyT1zZuOREBC5c0,190
84
+ eval_protocol/mcp/session/manager.py,sha256=Hwp2KQx683tcrh5LcDBGoUvKzf1Z0VL9d8fQBJ9HGhs,8602
85
+ eval_protocol/mcp_agent/__init__.py,sha256=EdLJBoQpBP9ggQc2aasi4PxtLuLf3l1ZJZfxh4H1J0s,31
86
+ eval_protocol/mcp_agent/config.py,sha256=QUrGOGxeuBSZq1TDHLCSd3wEVvWbp7neSrwpd7SH3lQ,7359
87
+ eval_protocol/mcp_agent/intermediary_server.py,sha256=jdPJ_0Ebn6gNZ2vzuS4b9MlztfSF6Z2xP84JwAsrCZY,28518
88
+ eval_protocol/mcp_agent/main.py,sha256=tT_WRqRYCfDC6DfCUbHwgGrAwqk9nw18jmTZ9BMesE0,8885
89
+ eval_protocol/mcp_agent/session.py,sha256=mNeXeYPbJBXrm_PI98jmTLu_-pQMmRfw2raXe2Iv2Y8,3386
90
+ eval_protocol/mcp_agent/orchestration/__init__.py,sha256=7QQAvbguTm3wg9FJmGM-ZbLakqsSVNBEzrlvMR65jzs,34
91
+ eval_protocol/mcp_agent/orchestration/base_client.py,sha256=jUnEXgf0ttoPWq6n7Kjg7oMYQT8Fxx5h-QneBpc2iJg,5458
92
+ eval_protocol/mcp_agent/orchestration/local_docker_client.py,sha256=QQloZFQQIPc67H5RQBuH1OmmkkPn7wEVIWtJ9iCjc78,37438
93
+ eval_protocol/mcp_agent/orchestration/remote_http_client.py,sha256=KiomScLlvXfdJj7v-hISg0x-WrQ3qWbYSn1RidEEGQk,15288
94
+ eval_protocol/mcp_agent/orchestration/stdio_mcp_client_helper.py,sha256=OYn0xfUHPfXBMLHs7XtvI4EfW2-ntq-grTiLlCJ-iuw,211
95
+ eval_protocol/rewards/__init__.py,sha256=7Inqlp1XR2ufZ1IHMghUaDiHXkuoWGxSpbA61G3JlkE,2552
96
+ eval_protocol/rewards/accuracy.py,sha256=dpCTPCEEdVtUbdaGsCVVVrDdYs-TZfksZywNniueF3E,17132
97
+ eval_protocol/rewards/accuracy_length.py,sha256=aXtdY_dgjQnQSoDc-ignQ__L7QZGzv0LyLci-NbmYio,6457
98
+ eval_protocol/rewards/apps_coding_reward.py,sha256=IHccyJURAn46E7TsMGxw8ixXgg0rG_dxFx9YVo0ypCk,16964
99
+ eval_protocol/rewards/apps_execution_utils.py,sha256=sGHF8-0FXZGo4m7uaLCgW6P0Nh2_1_Pa93fqCbCZjrI,6795
100
+ eval_protocol/rewards/apps_testing_util.py,sha256=5oJ4uQyzHtPn4kVWOtITj-dqtXFRauujNSrws4i6Atc,25261
101
+ eval_protocol/rewards/bfcl_reward.py,sha256=7lA1xtKYIYD2jm5lq8TiYPL5V_O5TLXm_YV2PXosJdI,13573
102
+ eval_protocol/rewards/code_execution.py,sha256=4All56oLnaMFzB-LGkoRNXhZ19NIRRjHWbFccHf4jvk,57215
103
+ eval_protocol/rewards/code_execution_utils.py,sha256=n-Urk3mlixgRUx_wbSbB-EV8_OA9Za6GHSug0fq-ACo,3219
104
+ eval_protocol/rewards/cpp_code.py,sha256=TWMxdqcDeSbLx0q1-kyInzhunEHUR4wmNnf_Q-UXgLM,27191
105
+ eval_protocol/rewards/deepcoder_reward.py,sha256=Ap9wc_ayL46bRskGD42cw28KApAEmjLtIUKh8BGYD-s,5714
106
+ eval_protocol/rewards/format.py,sha256=Lz6ZKvePy8msm_JXWkqwMmTqcHb6UgcSvBsGe3ocVKw,4595
107
+ eval_protocol/rewards/function_calling.py,sha256=2zEBqhyZm3wtTvQvAK3vP1APpicZkDelwvQ2JhYi160,21012
108
+ eval_protocol/rewards/json_schema.py,sha256=SYTR83hgnlx3DBWTLCNPBkGOCm7boDZmZdBBHCis0Ys,16432
109
+ eval_protocol/rewards/language_consistency.py,sha256=tTAAn_ypuYi0M3Fh9H7-y-YVl9W-690m3ifudHxaDQk,17231
110
+ eval_protocol/rewards/lean_prover.py,sha256=bpjTNAIuKsHjJBObRYBHa3s_4krJ9_lGuyqpRNjKLqw,18374
111
+ eval_protocol/rewards/length.py,sha256=xTDtL7kxWgrwU70egXOEzvgu5OgYWHeDUOk_CD0sYtc,14873
112
+ eval_protocol/rewards/list_comparison_math_reward.py,sha256=0gsxdy4ZA4FbuCuVsxH6GjWID4Lrq6EsI3VsuvYxV2o,8018
113
+ eval_protocol/rewards/math.py,sha256=4_enrl-Ax1AruZ0ST5xONDrCdJRPa2IhglPGZn6n6W4,30389
114
+ eval_protocol/rewards/multiple_choice_math_reward.py,sha256=oB91dPAPB5IDEl3pJktv4mSYPflnjwdHbEea2UiAMa0,8231
115
+ eval_protocol/rewards/reasoning_steps.py,sha256=oaWDJtM60iZaYcVZFK5EzW-rxeoNYWngDKUeNWgI980,8214
116
+ eval_protocol/rewards/repetition.py,sha256=sUrqR0JwoJAcxilhIU-yGIZHEWBmTzgWbSSgVQrwyRc,11772
117
+ eval_protocol/rewards/tag_count.py,sha256=IBBfGxN-aCgBms4c1q3prCORmVDNLpzUlfUG-DsXU8M,5970
118
+ eval_protocol/utils/__init__.py,sha256=HVIKbbSw7bW9o4ZK4kqmhrmNQ9gLIlTvyPQ0JbBO9PM,328
119
+ eval_protocol/utils/batch_evaluation.py,sha256=tQfDmvsgTPT8H9t3j-cIpmkHXP2ib2iyLbvI8Yx1xKY,9260
120
+ eval_protocol/utils/batch_transformation.py,sha256=vM8NVsw1NK42Bgi0jzJcvr9_jOX6hNAYFhmjZme3yCU,7814
121
+ eval_protocol/utils/dataset_helpers.py,sha256=m0DKPAkQfb2QZHwKxiofTL2dKxADxVE4b1UxeMvKDK4,4391
122
+ eval_protocol/utils/module_loader.py,sha256=cCj-OuDXxHgXsKmE0GJC_fbD19ClU3AYQAENPbQ8yOA,2108
123
+ eval_protocol/utils/packaging_utils.py,sha256=ZLCYkYMzNZXqXF0AjKM7R-QC9jwdel0gCXwGrWw8ghU,4602
124
+ eval_protocol/utils/static_policy.py,sha256=lPgoOgu6VBHagB4uGXxkznJtIq-AXeO77m8tfxHUKHU,10395
125
+ eval_protocol-0.0.3.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
126
+ eval_protocol-0.0.3.dist-info/METADATA,sha256=h0Q4VBzgttQrI1O5Qw7fvmpnVu8VwZEl1bUl3DT8xyk,25986
127
+ eval_protocol-0.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
128
+ eval_protocol-0.0.3.dist-info/entry_points.txt,sha256=Xf5dl01KVsscH0MrJhyeyus-J4IwyddSFr5vL4wyYlU,135
129
+ eval_protocol-0.0.3.dist-info/top_level.txt,sha256=TyNvlsAJ1itAWyOmj0AC6BfP_yiHmstDXqGuPZZRTDw,26
130
+ eval_protocol-0.0.3.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ eval-protocol = eval_protocol.cli:main
3
+ fireworks-reward = eval_protocol.cli:main
4
+ reward-kit = eval_protocol.cli:main
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,2 @@
1
+ development
2
+ eval_protocol