Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored May 13, 2024
1 parent e94046b commit 5c4cdd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions crates/llama-cpp-server/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ fn main() {
make_output_binary(&out, "llama-server")
};

std::fs::rename(server_binary, &renamed_server_binary)
.expect("Failed to rename server binary");
std::fs::rename(server_binary, &renamed_server_binary).expect("Failed to rename server binary");
copy_to_output(&renamed_server_binary)
.expect("Failed to copy server binary to output directory");
}
Expand Down
2 changes: 1 addition & 1 deletion crates/llama-cpp-server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use futures::stream::BoxStream;
use serde_json::json;
use tabby_inference::{CompletionOptions, CompletionStream, Embedding};
use tokio::task::JoinHandle;
use tracing::{warn};
use tracing::warn;

pub struct LlamaCppServer {
port: u16,
Expand Down

0 comments on commit 5c4cdd5

Please sign in to comment.