Spaces:
Sleeping
Sleeping
Update question_generation.py
Browse files- question_generation.py +1 -1
question_generation.py
CHANGED
|
@@ -97,4 +97,4 @@ async def generate_questions(request: TopicRequest):
|
|
| 97 |
if __name__ == "__main__":
|
| 98 |
host = os.getenv("QUESTION_SERVICE_HOST", "0.0.0.0")
|
| 99 |
port = int(os.getenv("QUESTION_SERVICE_PORT", "8000"))
|
| 100 |
-
uvicorn.run(app, host=0.0.0.0, port=8000)
|
|
|
|
| 97 |
if __name__ == "__main__":
|
| 98 |
host = os.getenv("QUESTION_SERVICE_HOST", "0.0.0.0")
|
| 99 |
port = int(os.getenv("QUESTION_SERVICE_PORT", "8000"))
|
| 100 |
+
uvicorn.run(app, host="0.0.0.0", port=8000)
|