Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ class LegacyContextPrecisionEvaluator(
chunks_placeholder: str = "{{Chunks}}"
llm: Optional[UiPathLlmChatService] = None

def model_post_init(self, __context: Any):
def model_post_init(self, __context: Any) -> None:
"""Initialize the evaluator after model creation."""
super().model_post_init(__context)

def _initialize_llm(self):
def _initialize_llm(self) -> None:
"""Initialize the LLM used for evaluation."""
uipath = UiPath()
self.llm = UiPathLlmChatService(
Expand Down