| 125 | |
| 126 | |
| 127 | class PWS_Base(PWS): |
| 128 | def __init__(self, fewshot=fewshots.HOTPOTQA_PWS_BASE, planner_model="text-davinci-003", |
| 129 | solver_model="text-davinci-003", available_tools=["Wikipedia", "LLM"]): |
| 130 | super().__init__(available_tools=available_tools, |
| 131 | fewshot=fewshot, |
| 132 | planner_model=planner_model, |
| 133 | solver_model=solver_model) |
| 134 | |
| 135 | |
| 136 | class PWS_Extra(PWS): |