Files
2024-04-06 23:08:52 -05:00

6 lines
190 B
Python

from api_backend import load_chrome, start_chat_gpt, make_gpt_request, stop_chat_gpt
start_chat_gpt()
a = make_gpt_request("This just a test promt for the prosing")
print(a)
stop_chat_gpt()