8 lines
192 B
Python
8 lines
192 B
Python
from great_ai import GreatAI
|
|
|
|
|
|
@GreatAI.create
|
|
def hello_world(name: str) -> str:
|
|
"""Learn more about GreatAI at https://github.com/schmelczer/great-ai"""
|
|
|
|
return f"Hello {name}!"
|