Spaces:
Runtime error
Runtime error
Create main.py
Browse files
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')
|