Skip to content

Commit

Permalink
Update server_wrapper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushzenith authored Sep 25, 2024
1 parent 98d01e7 commit 8e238c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vlfm/vlm/server_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def process_request() -> Dict[str, Any]:
payload = request.json
return jsonify(model.process_payload(payload))

app.run(host="0.0.0.0", port=port)
app.run(host="0.0.0.0", port=port) # app.run(host="localhost", port=port)



def bool_arr_to_str(arr: np.ndarray) -> str:
Expand Down

0 comments on commit 8e238c9

Please sign in to comment.