mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
(docs) add docstrings for all /key, /user, /team, /customer endpoints (#6804)
* use helper to handle_exception_on_proxy * add doc string for /key/regenerate * use 1 helper for handle_exception_on_proxy * add doc string for /key/block * add doc string for /key/unblock * remove deprecated function * remove deprecated endpoints * remove incorrect tag for endpoint * fix linting * fix /key/regenerate * fix regen key * fix use port 4000 for user endpoints * fix clean up - use separate file for customer endpoints * add docstring for user/update * fix imports * doc string /user/list * doc string for /team/delete * fix team block endpoint * fix import block user * add doc string for /team/unblock * add doc string for /team/list * add doc string for /team/info * add doc string for key endpoints * fix customer_endpoints * add doc string for customer endpoints * fix import new_end_user * fix testing * fix import new_end_user * fix add check for allow_user_auth
This commit is contained in:
parent
994fb51016
commit
51ffe93e77
15 changed files with 963 additions and 882 deletions
|
@ -932,6 +932,9 @@ async def delete_team(
|
|||
"""
|
||||
delete team and associated team keys
|
||||
|
||||
Parameters:
|
||||
- team_ids: List[str] - Required. List of team IDs to delete. Example: ["team-1234", "team-5678"]
|
||||
|
||||
```
|
||||
curl --location 'http://0.0.0.0:4000/team/delete' \
|
||||
--header 'Authorization: Bearer sk-1234' \
|
||||
|
@ -1022,6 +1025,9 @@ async def team_info(
|
|||
"""
|
||||
get info on team + related keys
|
||||
|
||||
Parameters:
|
||||
- team_id: str - Required. The unique identifier of the team to get info on.
|
||||
|
||||
```
|
||||
curl --location 'http://localhost:4000/team/info?team_id=your_team_id_here' \
|
||||
--header 'Authorization: Bearer your_api_key_here'
|
||||
|
@ -1156,6 +1162,25 @@ async def block_team(
|
|||
):
|
||||
"""
|
||||
Blocks all calls from keys with this team id.
|
||||
|
||||
Parameters:
|
||||
- team_id: str - Required. The unique identifier of the team to block.
|
||||
|
||||
Example:
|
||||
```
|
||||
curl --location 'http://0.0.0.0:4000/team/block' \
|
||||
--header 'Authorization: Bearer sk-1234' \
|
||||
--header 'Content-Type: application/json' \
|
||||
--data '{
|
||||
"team_id": "team-1234"
|
||||
}'
|
||||
```
|
||||
|
||||
Returns:
|
||||
- The updated team record with blocked=True
|
||||
|
||||
|
||||
|
||||
"""
|
||||
from litellm.proxy.proxy_server import (
|
||||
_duration_in_seconds,
|
||||
|
@ -1171,6 +1196,12 @@ async def block_team(
|
|||
where={"team_id": data.team_id}, data={"blocked": True} # type: ignore
|
||||
)
|
||||
|
||||
if record is None:
|
||||
raise HTTPException(
|
||||
status_code=404,
|
||||
detail={"error": f"Team not found, passed team_id={data.team_id}"},
|
||||
)
|
||||
|
||||
return record
|
||||
|
||||
|
||||
|
@ -1185,6 +1216,19 @@ async def unblock_team(
|
|||
):
|
||||
"""
|
||||
Blocks all calls from keys with this team id.
|
||||
|
||||
Parameters:
|
||||
- team_id: str - Required. The unique identifier of the team to unblock.
|
||||
|
||||
Example:
|
||||
```
|
||||
curl --location 'http://0.0.0.0:4000/team/unblock' \
|
||||
--header 'Authorization: Bearer sk-1234' \
|
||||
--header 'Content-Type: application/json' \
|
||||
--data '{
|
||||
"team_id": "team-1234"
|
||||
}'
|
||||
```
|
||||
"""
|
||||
from litellm.proxy.proxy_server import (
|
||||
_duration_in_seconds,
|
||||
|
@ -1200,6 +1244,12 @@ async def unblock_team(
|
|||
where={"team_id": data.team_id}, data={"blocked": False} # type: ignore
|
||||
)
|
||||
|
||||
if record is None:
|
||||
raise HTTPException(
|
||||
status_code=404,
|
||||
detail={"error": f"Team not found, passed team_id={data.team_id}"},
|
||||
)
|
||||
|
||||
return record
|
||||
|
||||
|
||||
|
@ -1219,6 +1269,9 @@ async def list_team(
|
|||
curl --location --request GET 'http://0.0.0.0:4000/team/list' \
|
||||
--header 'Authorization: Bearer sk-1234'
|
||||
```
|
||||
|
||||
Parameters:
|
||||
- user_id: str - Optional. If passed will only return teams that the user_id is a member of.
|
||||
"""
|
||||
from litellm.proxy.proxy_server import (
|
||||
_duration_in_seconds,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue