This commit is contained in:
Ishaan Jaffer 2025-09-23 14:40:11 -07:00
parent bb6fb445c0
commit 3f50196acf

View file

@ -1,6 +1,6 @@
"""Teams management client for LiteLLM proxy."""
from typing import Any, Dict, List, Optional
from typing import Any, Dict, List, Optional, Union
import requests
@ -99,7 +99,7 @@ class TeamsManagementClient:
UnauthorizedError: If authentication fails
"""
url = f"{self._base_url}/v2/team/list"
params = {
params: Dict[str, Union[str, int]] = {
"page": page,
"page_size": page_size,
"sort_order": sort_order,