(question, args)
| 176 | |
| 177 | |
| 178 | def generate_without_explored_paths(question, args): |
| 179 | prompt = cot_prompt + "\n\nQ: " + question + "\nA:" |
| 180 | response = run_llm(prompt, args.temperature_reasoning, args.max_length, args.opeani_api_keys, args.LLM_type) |
| 181 | return response |
| 182 | |
| 183 | |
| 184 | def if_finish_list(lst): |
no test coverage detected