In the following places, I found that use_gpt4=True can be passed to change the use of the model from 3.5 to 4:
autoresearcher/llms/openai.py
autoresearcher/workflows/literature_review/combine_answers.py
autoresearcher/workflows/literature_review/extract_answers_from_papers.py
However, how do I do the same when calling literature_review? For example:
researcher = literature_review(
research_question, output_file="answer.txt"
)
In the following places, I found that
use_gpt4=Truecan be passed to change the use of the model from 3.5 to 4:autoresearcher/llms/openai.pyautoresearcher/workflows/literature_review/combine_answers.pyautoresearcher/workflows/literature_review/extract_answers_from_papers.pyHowever, how do I do the same when calling
literature_review? For example: