From 98903305e82349768d86744ca6dd3c18174de310 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Fri, 8 Jul 2022 11:28:59 +0200 Subject: [PATCH] Add missing file --- docs/hello_world.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 docs/hello_world.py 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}!"