Skip to content

Commit 6d75898

Browse files
committed
Update timeout and faithfulness skipped message
1 parent 9db96bd commit 6d75898

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

evaluators/ragas/langevals_ragas/faithfulness.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ async def _create_verdicts(self, row: dict, statements: list[str], callbacks):
137137
)
138138
if "true" in is_dont_know.content.lower(): # type: ignore
139139
return EvaluationResultSkipped(
140-
details="The output seems correctly to be an 'I don't know' statement given the provided contexts, ignoring faithfulness score."
140+
details="The output seems correctly to be an 'I don't know' statement given the provided contexts. Skipping faithfulness score."
141141
)
142142

143143
return RagasResult(

langevals/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def load(self):
174174
"preload_app": True,
175175
"forwarded_allow_ips": "*",
176176
"loglevel": "warning",
177-
"timeout": 120,
177+
"timeout": 900,
178178
}
179179

180180
StandaloneApplication(app, options).run()

0 commit comments

Comments
 (0)