4040 run : |
4141 python -m venv .venv
4242 source .venv/bin/activate
43- python -m pip install -r requirements.txt
43+ python -m pip install hatch
4444
4545 - name : Run tests
4646 env :
@@ -49,19 +49,20 @@ jobs:
4949
5050 run : |
5151 source .venv/bin/activate
52- python main.py -p personalities.assistant 'explain modems to me please'
53- python main.py -p personalities.c_auditer 'explain modems to me please'
54- python main.py -p personalities.examples.echo 'explain modems to me please'
55- python main.py -t taskflows.CVE-2023-2283.CVE-2023-2283
56- python main.py -t taskflows.examples.echo
57- python main.py -t taskflows.examples.example
58- python main.py -t taskflows.examples.example_globals
59- python main.py -t taskflows.examples.example_inputs
60- python main.py -t taskflows.examples.example_large_list_result_iter
61- python main.py -t taskflows.examples.example_repeat_prompt
62- python main.py -t taskflows.examples.example_repeat_prompt_async
63- python main.py -t taskflows.examples.example_repeat_prompt_dictionary
64- python main.py -t taskflows.examples.example_reusable_prompt
65- python main.py -t taskflows.examples.example_reusable_taskflows
66- python main.py -t taskflows.examples.example_triage_taskflow
67- python main.py -t taskflows.examples.single_step_taskflow
52+ hatch build
53+ hatch run main -p seclab_taskflow_agent.personalities.assistant 'explain modems to me please'
54+ hatch run main -p seclab_taskflow_agent.personalities.c_auditer 'explain modems to me please'
55+ hatch run main -p examples.personalities.echo 'explain modems to me please'
56+ hatch run main -t examples.taskflows.CVE-2023-2283
57+ hatch run main -t examples.taskflows.echo
58+ hatch run main -t examples.taskflows.example
59+ hatch run main -t examples.taskflows.example_globals
60+ hatch run main -t examples.taskflows.example_inputs
61+ hatch run main -t examples.taskflows.example_large_list_result_iter
62+ hatch run main -t examples.taskflows.example_repeat_prompt
63+ hatch run main -t examples.taskflows.example_repeat_prompt_async
64+ hatch run main -t examples.taskflows.example_repeat_prompt_dictionary
65+ hatch run main -t examples.taskflows.example_reusable_prompt
66+ hatch run main -t examples.taskflows.example_reusable_taskflows
67+ hatch run main -t examples.taskflows.example_triage_taskflow
68+ hatch run main -t examples.taskflows.single_step_taskflow
0 commit comments