@@ -14,13 +14,26 @@ python baselines/run_aider.py
14
14
15
15
- ` base_dir ` : Repos dir. Default ` repos ` .
16
16
- ` dataset_name ` : commit0 HF dataset name. Default: ` wentingzhao/commit0_docstring ` .
17
+ - ` dataset_split ` : commit0 dataset split. Default: ` test ` .
18
+ - ` repo_split ` : commit0 repo split. Default: ` simpy ` .
19
+ - ` num_workers ` : number of workers to run in parallel. Default: ` 10 ` .
17
20
18
21
` aider_config ` :
19
22
20
- - ` model_name ` : LLM model name
21
- - ` use_repo_info ` : Whether to use repo info
23
+ - ` llm_name ` : LLM model name. Default: ` claude-3-5-sonnet-20240620 ` .
24
+ - ` use_user_prompt ` : Whether to use user prompt. Default: ` false ` .
25
+ - ` user_prompt ` : User prompt. Default: ` "" ` .
26
+ - ` use_repo_info ` : Whether to use repo info. Default: ` false ` .
22
27
- Repo info
23
28
- skeleton of the repo(filenames under each dir)
24
29
- function stubs
25
- - ` use_unit_tests_info ` : Whether to use unit tests: unit_tests that target will be tested with
26
- - ` use_reference_info ` : Whether to use reference: reference doc/pdf/website
30
+
31
+ - ` use_unit_tests_info ` : Whether to use unit tests: unit_tests that target will be tested with. Default: ` false ` .
32
+ - ` use_reference_info ` : Whether to use reference: reference doc/pdf/website. Default: ` false ` .
33
+ - ` use_lint_info ` : Whether to use lint: lint info. Default: ` false ` .
34
+ - ` pre_commit_config_path ` : Path to pre-commit config. Default: ` .pre-commit-config.yaml ` .
35
+ - ` run_tests ` : Whether to run tests. Default: ` true ` .
36
+ - ` max_repo_info_length ` : Max length of repo info. Default: ` 10000 ` .
37
+ - ` max_unit_tests_info_length ` : Max length of unit tests info. Default: ` 10000 ` .
38
+ - ` max_reference_info_length ` : Max length of reference info. Default: ` 10000 ` .
39
+ - ` max_lint_info_length ` : Max length of lint info. Default: ` 10000 ` .
0 commit comments