We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
use_gpt4=True
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:
literature_review
researcher = literature_review( research_question, output_file="answer.txt" )
The text was updated successfully, but these errors were encountered:
Hey, sorry for the really late response!
#25 fixes this.
Just run:
researcher = literature_review(research_question, output_file="answer.txt", use_gpt4=True)
Sorry, something went wrong.
No branches or pull requests
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:The text was updated successfully, but these errors were encountered: