MeowXD commited on
Commit
4ce20e2
·
verified ·
1 Parent(s): 5f004c8

Create main.py

Browse files
Files changed (1) hide show
  1. main.py +9 -0
main.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask
2
+
3
+ app = Flask(__name__)
4
+
5
+ @app.route('/')
6
+ def main():
7
+ return 'Space will be soon...<br>After some time I will receive ZeroGPU<br>You need to enter your api_key/api_base or use default claude-3-haiku. OpenAi models also supported'
8
+
9
+ app.run(port=7860, host='0.0.0.0')