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
llm_checker
is_joint
In the is_joint code path, the prompt template seems to be hard-coded to the JOINT_CHECKING_PROMPT_Q prompt that requires a question to be passed in:
JOINT_CHECKING_PROMPT_Q
RefChecker/refchecker/checker/llm_checker.py
Line 87 in bd516af
However, I think this should be using self.prompt_temp or self.prompt_temp_wq depending on whether question is None just like the non joint checker:
self.prompt_temp
self.prompt_temp_wq
question is None
Line 181 in bd516af
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the
is_joint
code path, the prompt template seems to be hard-coded to theJOINT_CHECKING_PROMPT_Q
prompt that requires a question to be passed in:RefChecker/refchecker/checker/llm_checker.py
Line 87 in bd516af
However, I think this should be using
self.prompt_temp
orself.prompt_temp_wq
depending on whetherquestion is None
just like the non joint checker:RefChecker/refchecker/checker/llm_checker.py
Line 181 in bd516af
The text was updated successfully, but these errors were encountered: