diff --git a/docs/hello_world.py b/docs/hello_world.py new file mode 100644 index 0000000..e9b9960 --- /dev/null +++ b/docs/hello_world.py @@ -0,0 +1,8 @@ +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}!"