(
self,
)
| 178 | return step_result, None |
| 179 | |
| 180 | def create_prompt( |
| 181 | self, |
| 182 | ) -> str: |
| 183 | partial_solution = self.collect_partial_solution(self.current_node) |
| 184 | prompt = self.prompt_wrap( |
| 185 | self.question, |
| 186 | partial_solution, |
| 187 | self.config, |
| 188 | ) |
| 189 | return prompt |
| 190 | |
| 191 | def get_llm_samples( |
| 192 | self, |
no test coverage detected