Update app.py
Browse files
app.py
CHANGED
|
@@ -100,6 +100,7 @@ def calculate_score(feedback: str) -> int:
|
|
| 100 |
|
| 101 |
|
| 102 |
# Run the FastAPI app (only needed for local development)
|
|
|
|
| 103 |
if __name__ == "__main__":
|
| 104 |
import uvicorn
|
| 105 |
-
uvicorn.run(app, host="0.0.0.0", port=
|
|
|
|
| 100 |
|
| 101 |
|
| 102 |
# Run the FastAPI app (only needed for local development)
|
| 103 |
+
# Run the FastAPI app (needed for local development)
|
| 104 |
if __name__ == "__main__":
|
| 105 |
import uvicorn
|
| 106 |
+
uvicorn.run(app, host="0.0.0.0", port=7860)
|