10 lines
183 B
Python
10 lines
183 B
Python
|
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)
|