()
| 54 | |
| 55 | @APP.route("/chat", methods=["GET"]) |
| 56 | def chat(): |
| 57 | message = flask.request.args.get("q") |
| 58 | print("Sending message: ", message) |
| 59 | send_message(message) |
| 60 | response = get_last_message() |
| 61 | print("Response: ", response) |
| 62 | return response |
| 63 | |
| 64 | def start_browser(): |
| 65 | PAGE.goto("https://chat.openai.com/") |
nothing calls this directly
no test coverage detected