diff --git a/utils/postprocessors/ReasonerProcessor.js b/utils/postprocessors/ReasonerProcessor.js index 51741ec..411ef31 100644 --- a/utils/postprocessors/ReasonerProcessor.js +++ b/utils/postprocessors/ReasonerProcessor.js @@ -19,12 +19,10 @@ export class ReasonerProcessor extends AbstractPostProcessor { * }>} */ async processInner (input) { - // eslint-disable-next-line camelcase - const { text, thinking_text } = extractThinkingTextAndText(input.text) + const { text, thinkingText } = extractThinkingTextAndText(input.text) return { text, - // eslint-disable-next-line camelcase - thinking_text: input.thinking_text + thinking_text + thinking_text: input.thinking_text + thinkingText } } }