Open
Description
The llm chain of thought function runs generate_string instead of agenerate_string even though using ascore.
fix would be just to add a function:
async def allm_chain_of_thought(self) -> str:
prompt = template.G_EVAL_COT_TEMPLATE.format(
task_introduction=self.task_introduction,
evaluation_criteria=self.evaluation_criteria,
)
return await self._model.agenerate_string(input=prompt)
and update the ascore to the new function and await it