diff --git a/Cargo.lock b/Cargo.lock index a602e37..e5879ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -690,7 +690,7 @@ dependencies = [ [[package]] name = "ctranslate2-bindings" -version = "0.2.2-rc.2" +version = "0.2.2-rc.3" dependencies = [ "async-stream", "async-trait", @@ -3086,7 +3086,7 @@ dependencies = [ [[package]] name = "tabby" -version = "0.2.2-rc.2" +version = "0.2.2-rc.3" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index ee0b815..854207b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "0.2.2-rc.2" +version = "0.2.2-rc.3" edition = "2021" authors = ["Meng Zhang"] homepage = "https://github.com/TabbyML/tabby" diff --git a/crates/ctranslate2-bindings/Cargo.toml b/crates/ctranslate2-bindings/Cargo.toml index 36802bc..774537e 100644 --- a/crates/ctranslate2-bindings/Cargo.toml +++ b/crates/ctranslate2-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ctranslate2-bindings" -version = "0.2.2-rc.2" +version = "0.2.2-rc.3" edition = "2021" [dependencies] diff --git a/crates/tabby/Cargo.toml b/crates/tabby/Cargo.toml index 9314636..85a1b74 100644 --- a/crates/tabby/Cargo.toml +++ b/crates/tabby/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tabby" -version = "0.2.2-rc.2" +version = "0.2.2-rc.3" edition = "2021" [dependencies] diff --git a/tests/default.loadtest.js b/tests/default.loadtest.js index 3280376..fe465f5 100644 --- a/tests/default.loadtest.js +++ b/tests/default.loadtest.js @@ -20,7 +20,7 @@ export default () => { prompt: "def binarySearch(arr, left, right, x):\n mid = (left +", }); const headers = { "Content-Type": "application/json" }; - const res = http.post("http://api.tabbyml.com/v1/completions", payload, { + const res = http.post("https://tabbyml-tabby-template-space.hf.space/v1/completions", payload, { headers, }); check(res, { success: (r) => r.status === 200 });