This repository has been archived on 2024-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
ai-virtual-assistant/py/simple_chat.py

10 lines
183 B
Python
Raw Normal View History

2024-09-16 11:21:09 +02:00
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)