mirror of
https://github.com/tiennm99/litellm.git
synced 2026-06-18 00:48:01 +00:00
b631863b13
Co-authored-by: ishaan-berri <ishaan-berri@users.noreply.github.com>
12 lines
323 B
Python
12 lines
323 B
Python
import ast
|
|
from pathlib import Path
|
|
|
|
|
|
def test_utils_module_has_docstring():
|
|
utils_path = Path(__file__).parents[2] / "litellm" / "utils.py"
|
|
module = ast.parse(utils_path.read_text())
|
|
|
|
assert ast.get_docstring(module) == (
|
|
"Utility helpers for LiteLLM core request handling and provider support."
|
|
)
|