6b7e6b44f1
Python Build and Type Check / python-ci (ubuntu-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
gh-pages / build (push) Has been cancelled
Python Publish (pypi) / Upload release to PyPI (push) Has been cancelled
Spellcheck / spellcheck (push) Has been cancelled
74 lines
2.1 KiB
Python
74 lines
2.1 KiB
Python
# Copyright (c) 2024 Microsoft Corporation.
|
|
# Licensed under the MIT License
|
|
|
|
"""Request count middleware."""
|
|
|
|
import logging
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
if TYPE_CHECKING:
|
|
from graphrag_llm.types import (
|
|
AsyncLLMFunction,
|
|
LLMFunction,
|
|
Metrics,
|
|
)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
def with_logging(
|
|
*,
|
|
sync_middleware: "LLMFunction",
|
|
async_middleware: "AsyncLLMFunction",
|
|
) -> tuple[
|
|
"LLMFunction",
|
|
"AsyncLLMFunction",
|
|
]:
|
|
"""Wrap model functions with logging middleware.
|
|
|
|
Args
|
|
----
|
|
sync_middleware: LLMFunction
|
|
The synchronous model function to wrap.
|
|
Either a completion function or an embedding function.
|
|
async_middleware: AsyncLLMFunction
|
|
The asynchronous model function to wrap.
|
|
Either a completion function or an embedding function.
|
|
|
|
Returns
|
|
-------
|
|
tuple[LLMFunction, AsyncLLMFunction]
|
|
The synchronous and asynchronous model functions wrapped with request count middleware.
|
|
"""
|
|
|
|
def _request_count_middleware(
|
|
**kwargs: Any,
|
|
):
|
|
metrics: Metrics | None = kwargs.get("metrics")
|
|
try:
|
|
return sync_middleware(**kwargs)
|
|
except Exception as e:
|
|
retries = metrics.get("retries", None) if metrics else None
|
|
retry_str = f" after {retries} retries" if retries else ""
|
|
logger.exception(
|
|
f"Request failed{retry_str} with exception={e}", # noqa: G004, TRY401
|
|
)
|
|
raise
|
|
|
|
async def _request_count_middleware_async(
|
|
**kwargs: Any,
|
|
):
|
|
metrics: Metrics | None = kwargs.get("metrics")
|
|
|
|
try:
|
|
return await async_middleware(**kwargs)
|
|
except Exception as e:
|
|
retries = metrics.get("retries", None) if metrics else None
|
|
retry_str = f" after {retries} retries" if retries else ""
|
|
logger.exception(
|
|
f"Async request failed{retry_str} with exception={e}", # noqa: G004, TRY401
|
|
)
|
|
raise
|
|
|
|
return (_request_count_middleware, _request_count_middleware_async) # type: ignore
|