Compare commits
No commits in common. "c1d1bf246cf64cec6f86ec48d4693c85f68cb775" and "065b241f19ab2edbecb0fcab411caad97ec5354f" have entirely different histories.
c1d1bf246c
...
065b241f19
4 changed files with 11 additions and 8 deletions
|
@ -118,3 +118,8 @@ class API:
|
|||
|
||||
ssl_context = ("cert.pem", "key.pem")
|
||||
self.app.run(debug=True, host='0.0.0.0', port=5000)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
api = API()
|
||||
api.run()
|
||||
|
|
|
@ -6,3 +6,6 @@ openai
|
|||
anthropic
|
||||
pyOpenSSL
|
||||
pywebview
|
||||
tkhtmlview
|
||||
cefpython3
|
||||
pywebview
|
|
@ -1,7 +0,0 @@
|
|||
import os
|
||||
import webview
|
||||
|
||||
os.system("python api.py")
|
||||
webview.create_window('Hello world', 'http://localhost:3000')
|
||||
webview.start()
|
||||
|
|
@ -1 +1,3 @@
|
|||
|
||||
import webview
|
||||
webview.create_window('Hello world', 'http://localhost:3000')
|
||||
webview.start()
|
||||
|
|
Loading…
Reference in a new issue