(trajectory)
| 353 | assert flag |
| 354 | |
| 355 | def test_task_27(trajectory): |
| 356 | final_answer=trajectory[-1]['content'] |
| 357 | answer_list=["ABC","NBC"] |
| 358 | flag=False |
| 359 | for ans in answer_list: |
| 360 | if ans in final_answer: |
| 361 | flag=True |
| 362 | assert flag |
| 363 | |
| 364 | def test_task_28(trajectory): |
| 365 | final_answer=trajectory[-1]['content'] |
nothing calls this directly
no outgoing calls
no test coverage detected