Update app.py
Browse files
app.py
CHANGED
|
@@ -200,6 +200,5 @@ def chat_completions():
|
|
| 200 |
result = sync_openai_complete(CONFIG["MODEL"], message_input)
|
| 201 |
return jsonify(result)
|
| 202 |
|
| 203 |
-
|
| 204 |
if __name__ == "__main__":
|
| 205 |
-
app.run(host="0.0.0.0")
|
|
|
|
| 200 |
result = sync_openai_complete(CONFIG["MODEL"], message_input)
|
| 201 |
return jsonify(result)
|
| 202 |
|
|
|
|
| 203 |
if __name__ == "__main__":
|
| 204 |
+
app.run(host="0.0.0.0", port=7860)
|