mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 11:14:04 +00:00
5 lines
128 B
Python
5 lines
128 B
Python
from typing import Literal
|
|
|
|
|
|
def my_custom_validate(token: str) -> Literal[True]:
|
|
raise Exception("Custom validate failed")
|