fix: fix typo in local_eval_service.py

Merge https://github.com/google/adk-python/pull/2586

_perform_inference_sigle_eval_item -> _perform_inference_single_eval_item

COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/2586 from FingerLiu:main 78083cb5d4ba1cc90785ad5d727756d467737e08
PiperOrigin-RevId: 826666447
This commit is contained in:
FingerLiu
2025-10-31 16:21:25 -07:00
committed by Copybara-Service
parent b1ff85fb23
commit c4c127df23
2 changed files with 7 additions and 7 deletions
@@ -130,7 +130,7 @@ class LocalEvalService(BaseEvalService):
async def run_inference(eval_case):
async with semaphore:
return await self._perform_inference_sigle_eval_item(
return await self._perform_inference_single_eval_item(
app_name=inference_request.app_name,
eval_set_id=inference_request.eval_set_id,
eval_case=eval_case,
@@ -383,7 +383,7 @@ class LocalEvalService(BaseEvalService):
return final_eval_status
async def _perform_inference_sigle_eval_item(
async def _perform_inference_single_eval_item(
self,
app_name: str,
eval_set_id: str,