"vscode:/vscode.git/clone" did not exist on "5fb22a055a23ce5d9cf135f9b29cf762629db05d"
Unverified Commit b956cdf8 authored by Cyrus Leung's avatar Cyrus Leung Committed by GitHub
Browse files

[Doc] Fix run_batch docs (#34056)


Signed-off-by: default avatarDarkLight1337 <tlleungac@connect.ust.hk>
parent ed17f54c
...@@ -565,12 +565,15 @@ async def run_request( ...@@ -565,12 +565,15 @@ async def run_request(
return batch_output return batch_output
WrapperFn: TypeAlias = Callable[[Callable], Callable]
def handle_endpoint_request( def handle_endpoint_request(
request: BatchRequestInput, request: BatchRequestInput,
tracker: BatchProgressTracker, tracker: BatchProgressTracker,
url_matcher: Callable[[str], bool], url_matcher: Callable[[str], bool],
handler_getter: Callable[[], Callable | None], handler_getter: Callable[[], Callable | None],
wrapper_fn: Callable[[Callable], Callable] | None = None, wrapper_fn: WrapperFn | None = None,
) -> Awaitable[BatchRequestOutput] | None: ) -> Awaitable[BatchRequestOutput] | None:
""" """
Generic handler for endpoint requests. Generic handler for endpoint requests.
...@@ -602,7 +605,7 @@ def handle_endpoint_request( ...@@ -602,7 +605,7 @@ def handle_endpoint_request(
return run_request(handler_fn, request, tracker) return run_request(handler_fn, request, tracker)
def make_transcription_wrapper(is_translation: bool): def make_transcription_wrapper(is_translation: bool) -> WrapperFn:
""" """
Factory function to create a wrapper for transcription/translation handlers. Factory function to create a wrapper for transcription/translation handlers.
The wrapper converts BatchTranscriptionRequest or BatchTranslationRequest The wrapper converts BatchTranscriptionRequest or BatchTranslationRequest
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment