├── .env_example ├── LICENSE.md ├── README.md ├── assets ├── logo.gif └── logo.jpeg ├── configs ├── overthewire_bench │ ├── bandit.json │ ├── benchmarks │ │ ├── Gpt_4o.json │ │ ├── Gpt_4o_mini.json │ │ ├── Gpt_o1.json │ │ ├── Llama31_70b.json │ │ ├── Llama31_8b.json │ │ ├── Mixtral_8x7.json │ │ ├── Phi35_MoE.json │ │ ├── Phi3_4k.json │ │ └── Qwen2_72b.json │ ├── natas.json │ └── param_opt │ │ ├── observation_length │ │ ├── Llama31_8b_obs_length_limit_100.json │ │ ├── Llama31_8b_obs_length_limit_1000.json │ │ ├── Llama31_8b_obs_length_limit_150.json │ │ ├── Llama31_8b_obs_length_limit_200.json │ │ ├── Llama31_8b_obs_length_limit_2000.json │ │ ├── Llama31_8b_obs_length_limit_250.json │ │ ├── Llama31_8b_obs_length_limit_300.json │ │ ├── Llama31_8b_obs_length_limit_350.json │ │ ├── Llama31_8b_obs_length_limit_400.json │ │ ├── Llama31_8b_obs_length_limit_450.json │ │ ├── Llama31_8b_obs_length_limit_500.json │ │ ├── Phi_obs_length_limit_100.json │ │ ├── Phi_obs_length_limit_1000.json │ │ ├── Phi_obs_length_limit_150.json │ │ ├── Phi_obs_length_limit_200.json │ │ ├── Phi_obs_length_limit_2000.json │ │ ├── Phi_obs_length_limit_250.json │ │ ├── Phi_obs_length_limit_300.json │ │ ├── Phi_obs_length_limit_350.json │ │ ├── Phi_obs_length_limit_400.json │ │ └── Phi_obs_length_limit_500.json │ │ ├── temperature │ │ ├── Llama31_8b_temp_0.json │ │ ├── Llama31_8b_temp_02.json │ │ ├── Llama31_8b_temp_04.json │ │ ├── Llama31_8b_temp_06.json │ │ ├── Llama31_8b_temp_08.json │ │ ├── Llama31_8b_temp_12.json │ │ ├── Llama31_8b_temp_14.json │ │ ├── Llama31_8b_temp_16.json │ │ ├── Llama31_8b_temp_18.json │ │ ├── Llama31_8b_temp_20.json │ │ ├── Phi_temp_0.json │ │ ├── Phi_temp_02.json │ │ ├── Phi_temp_04.json │ │ ├── Phi_temp_06.json │ │ ├── Phi_temp_08.json │ │ ├── Phi_temp_12.json │ │ ├── Phi_temp_14.json │ │ ├── Phi_temp_16.json │ │ ├── Phi_temp_18.json │ │ └── Phi_temp_20.json │ │ └── top_p │ │ ├── Llama31_8b_top_p_01.json │ │ ├── Llama31_8b_top_p_02.json │ │ ├── Llama31_8b_top_p_03.json │ │ ├── Llama31_8b_top_p_04.json │ │ ├── Llama31_8b_top_p_05.json │ │ ├── Llama31_8b_top_p_06.json │ │ ├── Llama31_8b_top_p_07.json │ │ ├── Llama31_8b_top_p_08.json │ │ ├── Llama31_8b_top_p_09.json │ │ ├── Llama31_8b_top_p_1.json │ │ ├── Phi_top_p_01.json │ │ ├── Phi_top_p_02.json │ │ ├── Phi_top_p_03.json │ │ ├── Phi_top_p_04.json │ │ ├── Phi_top_p_05.json │ │ ├── Phi_top_p_06.json │ │ ├── Phi_top_p_07.json │ │ ├── Phi_top_p_08.json │ │ ├── Phi_top_p_09.json │ │ └── Phi_top_p_1.json └── pico_bench │ ├── benchmarks │ ├── Gpt_4o.json │ ├── Gpt_4o_mini.json │ ├── Gpt_o1.json │ ├── Llama31_70b.json │ ├── Llama31_8b.json │ ├── Mixtral_8x7.json │ ├── Phi35_MoE.json │ ├── Phi3_4k.json │ └── Qwen2_72b.json │ └── param_opt │ ├── Llama31_8b_prompt_chaining_true.json │ ├── observation_length │ ├── Llama31_8b_obs_length_limit_100.json │ ├── Llama31_8b_obs_length_limit_1000.json │ ├── Llama31_8b_obs_length_limit_150.json │ ├── Llama31_8b_obs_length_limit_200.json │ ├── Llama31_8b_obs_length_limit_250.json │ ├── Llama31_8b_obs_length_limit_300.json │ ├── Llama31_8b_obs_length_limit_350.json │ ├── Llama31_8b_obs_length_limit_400.json │ ├── Llama31_8b_obs_length_limit_500.json │ ├── Phi_obs_length_limit_100.json │ ├── Phi_obs_length_limit_1000.json │ ├── Phi_obs_length_limit_150.json │ ├── Phi_obs_length_limit_200.json │ ├── Phi_obs_length_limit_2000.json │ ├── Phi_obs_length_limit_250.json │ ├── Phi_obs_length_limit_300.json │ ├── Phi_obs_length_limit_350.json │ ├── Phi_obs_length_limit_400.json │ └── Phi_obs_length_limit_500.json │ ├── temperature │ ├── Llama31_8b_temp_0.json │ ├── Llama31_8b_temp_02.json │ ├── Llama31_8b_temp_04.json │ ├── Llama31_8b_temp_06.json │ ├── Llama31_8b_temp_08.json │ ├── Llama31_8b_temp_10.json │ ├── Llama31_8b_temp_12.json │ ├── Llama31_8b_temp_14.json │ ├── Llama31_8b_temp_16.json │ ├── Llama31_8b_temp_18.json │ ├── Llama31_8b_temp_20.json │ ├── Phi_temp_0.json │ ├── Phi_temp_02.json │ ├── Phi_temp_04.json │ ├── Phi_temp_06.json │ ├── Phi_temp_08.json │ ├── Phi_temp_12.json │ ├── Phi_temp_14.json │ ├── Phi_temp_16.json │ ├── Phi_temp_18.json │ └── Phi_temp_20.json │ └── top_p │ ├── Llama31_8b_top_p_01.json │ ├── Llama31_8b_top_p_02.json │ ├── Llama31_8b_top_p_03.json │ ├── Llama31_8b_top_p_04.json │ ├── Llama31_8b_top_p_05.json │ ├── Llama31_8b_top_p_06.json │ ├── Llama31_8b_top_p_07.json │ ├── Llama31_8b_top_p_08.json │ ├── Llama31_8b_top_p_1.json │ ├── Phi_top_p_01.json │ ├── Phi_top_p_02.json │ ├── Phi_top_p_03.json │ ├── Phi_top_p_04.json │ ├── Phi_top_p_05.json │ ├── Phi_top_p_06.json │ ├── Phi_top_p_07.json │ ├── Phi_top_p_08.json │ ├── Phi_top_p_09.json │ └── Phi_top_p_1.json ├── docker_setup.py ├── overthewire_bench ├── README.md ├── bandit.json ├── bandit_solved.json ├── bandit_solver.py ├── combine.py ├── combined_solved.json ├── krypton.json ├── krypton_solved.json ├── krypton_solver.py ├── leviathan.json ├── leviathan_solved.json ├── leviathan_solver.py ├── natas.json ├── natas_solved.json ├── natas_solver.py └── run_solvers.sh ├── pentest_agent.py ├── picoctf_bench ├── Dockerfile ├── README.md ├── benchmark.json ├── benchmark_solved.json └── challenge_solver.py ├── requirements.txt ├── run.py └── run_bench.py /.env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/.env_example -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/assets/logo.gif -------------------------------------------------------------------------------- /assets/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/assets/logo.jpeg -------------------------------------------------------------------------------- /configs/overthewire_bench/bandit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/bandit.json -------------------------------------------------------------------------------- /configs/overthewire_bench/benchmarks/Gpt_4o.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/benchmarks/Gpt_4o.json -------------------------------------------------------------------------------- /configs/overthewire_bench/benchmarks/Gpt_4o_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/benchmarks/Gpt_4o_mini.json -------------------------------------------------------------------------------- /configs/overthewire_bench/benchmarks/Gpt_o1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/benchmarks/Gpt_o1.json -------------------------------------------------------------------------------- /configs/overthewire_bench/benchmarks/Llama31_70b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/benchmarks/Llama31_70b.json -------------------------------------------------------------------------------- /configs/overthewire_bench/benchmarks/Llama31_8b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/benchmarks/Llama31_8b.json -------------------------------------------------------------------------------- /configs/overthewire_bench/benchmarks/Mixtral_8x7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/benchmarks/Mixtral_8x7.json -------------------------------------------------------------------------------- /configs/overthewire_bench/benchmarks/Phi35_MoE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/benchmarks/Phi35_MoE.json -------------------------------------------------------------------------------- /configs/overthewire_bench/benchmarks/Phi3_4k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/benchmarks/Phi3_4k.json -------------------------------------------------------------------------------- /configs/overthewire_bench/benchmarks/Qwen2_72b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/benchmarks/Qwen2_72b.json -------------------------------------------------------------------------------- /configs/overthewire_bench/natas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/natas.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_100.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_1000.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_150.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_150.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_200.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_2000.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_250.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_300.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_300.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_350.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_350.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_400.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_450.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_450.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_500.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_100.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_1000.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_150.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_150.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_200.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_2000.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_250.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_300.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_300.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_350.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_350.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_400.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/observation_length/Phi_obs_length_limit_500.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_0.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_02.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_04.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_06.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_08.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_12.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_14.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_16.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_18.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Llama31_8b_temp_20.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_0.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_02.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_04.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_06.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_08.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_12.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_14.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_16.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_18.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/temperature/Phi_temp_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/temperature/Phi_temp_20.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_01.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_02.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_03.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_04.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_05.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_06.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_07.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_08.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_09.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Llama31_8b_top_p_1.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_01.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_02.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_03.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_04.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_05.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_06.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_07.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_08.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_09.json -------------------------------------------------------------------------------- /configs/overthewire_bench/param_opt/top_p/Phi_top_p_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/overthewire_bench/param_opt/top_p/Phi_top_p_1.json -------------------------------------------------------------------------------- /configs/pico_bench/benchmarks/Gpt_4o.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/benchmarks/Gpt_4o.json -------------------------------------------------------------------------------- /configs/pico_bench/benchmarks/Gpt_4o_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/benchmarks/Gpt_4o_mini.json -------------------------------------------------------------------------------- /configs/pico_bench/benchmarks/Gpt_o1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/benchmarks/Gpt_o1.json -------------------------------------------------------------------------------- /configs/pico_bench/benchmarks/Llama31_70b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/benchmarks/Llama31_70b.json -------------------------------------------------------------------------------- /configs/pico_bench/benchmarks/Llama31_8b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/benchmarks/Llama31_8b.json -------------------------------------------------------------------------------- /configs/pico_bench/benchmarks/Mixtral_8x7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/benchmarks/Mixtral_8x7.json -------------------------------------------------------------------------------- /configs/pico_bench/benchmarks/Phi35_MoE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/benchmarks/Phi35_MoE.json -------------------------------------------------------------------------------- /configs/pico_bench/benchmarks/Phi3_4k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/benchmarks/Phi3_4k.json -------------------------------------------------------------------------------- /configs/pico_bench/benchmarks/Qwen2_72b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/benchmarks/Qwen2_72b.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/Llama31_8b_prompt_chaining_true.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/Llama31_8b_prompt_chaining_true.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_100.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_1000.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_150.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_150.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_200.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_250.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_300.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_300.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_350.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_350.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_400.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Llama31_8b_obs_length_limit_500.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_100.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_1000.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_150.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_150.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_200.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_2000.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_250.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_300.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_300.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_350.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_350.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_400.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/observation_length/Phi_obs_length_limit_500.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_0.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_02.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_04.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_06.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_08.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_10.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_12.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_14.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_16.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_18.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Llama31_8b_temp_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Llama31_8b_temp_20.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_0.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_02.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_04.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_06.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_08.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_12.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_14.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_16.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_18.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/temperature/Phi_temp_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/temperature/Phi_temp_20.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_01.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_02.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_03.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_04.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_05.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_06.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_07.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_08.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Llama31_8b_top_p_1.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_01.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_02.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_03.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_04.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_05.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_06.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_07.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_08.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_09.json -------------------------------------------------------------------------------- /configs/pico_bench/param_opt/top_p/Phi_top_p_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/configs/pico_bench/param_opt/top_p/Phi_top_p_1.json -------------------------------------------------------------------------------- /docker_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/docker_setup.py -------------------------------------------------------------------------------- /overthewire_bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/README.md -------------------------------------------------------------------------------- /overthewire_bench/bandit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/bandit.json -------------------------------------------------------------------------------- /overthewire_bench/bandit_solved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/bandit_solved.json -------------------------------------------------------------------------------- /overthewire_bench/bandit_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/bandit_solver.py -------------------------------------------------------------------------------- /overthewire_bench/combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/combine.py -------------------------------------------------------------------------------- /overthewire_bench/combined_solved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/combined_solved.json -------------------------------------------------------------------------------- /overthewire_bench/krypton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/krypton.json -------------------------------------------------------------------------------- /overthewire_bench/krypton_solved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/krypton_solved.json -------------------------------------------------------------------------------- /overthewire_bench/krypton_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/krypton_solver.py -------------------------------------------------------------------------------- /overthewire_bench/leviathan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/leviathan.json -------------------------------------------------------------------------------- /overthewire_bench/leviathan_solved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/leviathan_solved.json -------------------------------------------------------------------------------- /overthewire_bench/leviathan_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/leviathan_solver.py -------------------------------------------------------------------------------- /overthewire_bench/natas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/natas.json -------------------------------------------------------------------------------- /overthewire_bench/natas_solved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/natas_solved.json -------------------------------------------------------------------------------- /overthewire_bench/natas_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/natas_solver.py -------------------------------------------------------------------------------- /overthewire_bench/run_solvers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/overthewire_bench/run_solvers.sh -------------------------------------------------------------------------------- /pentest_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/pentest_agent.py -------------------------------------------------------------------------------- /picoctf_bench/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/picoctf_bench/Dockerfile -------------------------------------------------------------------------------- /picoctf_bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/picoctf_bench/README.md -------------------------------------------------------------------------------- /picoctf_bench/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/picoctf_bench/benchmark.json -------------------------------------------------------------------------------- /picoctf_bench/benchmark_solved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/picoctf_bench/benchmark_solved.json -------------------------------------------------------------------------------- /picoctf_bench/challenge_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/picoctf_bench/challenge_solver.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/run.py -------------------------------------------------------------------------------- /run_bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aielte-research/HackSynth/HEAD/run_bench.py --------------------------------------------------------------------------------