gradio_demo_CatDogClassifier / src /number_manipulation.py
Soutrik
added: fastapi framework
36ed17a
raw
history blame
209 Bytes
import random
def add_random_number(user_input: int) -> int:
random_addition = random.randint(1, 100) # Add a random number between 1 and 100
result = user_input + random_addition
return result