From 2c7aa6bc3ca0d5f761bbf996391f035c6c8bed25 Mon Sep 17 00:00:00 2001 From: YasinOnm08 Date: Mon, 16 Sep 2024 11:21:09 +0200 Subject: [PATCH] input/output --- py/simple_chat.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 py/simple_chat.py diff --git a/py/simple_chat.py b/py/simple_chat.py new file mode 100644 index 0000000..53203d1 --- /dev/null +++ b/py/simple_chat.py @@ -0,0 +1,10 @@ +from api import api + +chat1 = api() + +while True: + print("Gib deine Frage ein") + input_text = input() + + output_text = api.send_message(chat1, input_text) + print(output_text) \ No newline at end of file