Compare commits

..

No commits in common. "c1d1bf246cf64cec6f86ec48d4693c85f68cb775" and "065b241f19ab2edbecb0fcab411caad97ec5354f" have entirely different histories.

4 changed files with 11 additions and 8 deletions

View file

@ -118,3 +118,8 @@ class API:
ssl_context = ("cert.pem", "key.pem") ssl_context = ("cert.pem", "key.pem")
self.app.run(debug=True, host='0.0.0.0', port=5000) self.app.run(debug=True, host='0.0.0.0', port=5000)
if __name__ == '__main__':
api = API()
api.run()

View file

@ -6,3 +6,6 @@ openai
anthropic anthropic
pyOpenSSL pyOpenSSL
pywebview pywebview
tkhtmlview
cefpython3
pywebview

View file

@ -1,7 +0,0 @@
import os
import webview
os.system("python api.py")
webview.create_window('Hello world', 'http://localhost:3000')
webview.start()

View file

@ -1 +1,3 @@
import webview
webview.create_window('Hello world', 'http://localhost:3000')
webview.start()