AIstudioProxyAPI / api_utils /common_utils.py
peijun1's picture
Deploy AI Studio Proxy API to Hugging Face Spaces
a5784e9
Raw
History Blame Contribute Delete
175 Bytes
import random
def random_id(length: int = 24) -> str:
charset = "abcdefghijklmnopqrstuvwxyz0123456789"
return "".join(random.choice(charset) for _ in range(length))