Skip to content

Commit

Permalink
replace port to 57043 (randomly generated)
Browse files Browse the repository at this point in the history
  • Loading branch information
okdshin committed Dec 2, 2023
1 parent ddc50a9 commit a0bba8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flatline_lsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def main() -> None:
"--backend-server-port",
type=int,
help="llm inference backend server port number",
default=5000,
default=57045,
)
parser.add_argument(
"--tokenizer-name",
Expand Down
2 changes: 1 addition & 1 deletion flatline_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ std::string make_response_json(std::vector<float> const &next_token_logits) {

#include <structopt/app.hpp>
struct app_options {
std::optional<std::string> port = "5000";
std::optional<std::string> port = "57045";
std::optional<std::string> model_path;
std::optional<bool> numa = true;
std::optional<int> n_gpu_layers = 0;
Expand Down

0 comments on commit a0bba8c

Please sign in to comment.