abanm commited on
Commit
cc53a24
·
verified ·
1 Parent(s): dd67240

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -58,8 +58,8 @@ async def generate(request: Request):
58
 
59
  return {"response": output.strip()}
60
 
61
-
62
  if __name__ == "__main__":
63
  import uvicorn
64
- uvicorn.run(app, host="0.0.0.0", port=7860)
 
65
 
 
58
 
59
  return {"response": output.strip()}
60
 
 
61
  if __name__ == "__main__":
62
  import uvicorn
63
+ uvicorn.run(app, host="0.0.0.0", port=8080) # Changed from 7860 to 8080
64
+
65