from typing_extensions import Annotated def say_hello(name: Annotated[str, "this is just metadata"]) -> str: return f"Hello {name}"