Skip to content

Commit 864ceb5

Browse files
authored
fix(cli): Add Gemini Flash model version, release v0.38.10. (#413)
1 parent 4d35095 commit 864ceb5

File tree

7 files changed

+13
-14
lines changed

7 files changed

+13
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Unreleased
1+
# v0.38.10
22
- Support mailbox sync states
3+
- Support Gemini IXP model versions.
34

45
# v0.38.9
56
- Check status code when getting octet stream

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ The [api](/api) directory contains a Rust client library for IXP which can be us
5353

5454
Statically linked binaries with no dependencies are provided for selected platforms:
5555

56-
- [Linux (x86_64-unknown-linux-musl)](https://reinfer.dev/public/cli/bin/x86_64-unknown-linux-musl/0.38.9/re)
57-
- [macOS (aarch64-apple-darwin)](https://reinfer.dev/public/cli/bin/aarch64-apple-darwin/0.38.9/re)
58-
- [Windows (x86_64-pc-windows-gnu)](https://reinfer.dev/public/cli/bin/x86_64-pc-windows-gnu/0.38.9/re.exe)
56+
- [Linux (x86_64-unknown-linux-musl)](https://reinfer.dev/public/cli/bin/x86_64-unknown-linux-musl/0.38.10/re)
57+
- [macOS (aarch64-apple-darwin)](https://reinfer.dev/public/cli/bin/aarch64-apple-darwin/0.38.10/re)
58+
- [Windows (x86_64-pc-windows-gnu)](https://reinfer.dev/public/cli/bin/x86_64-pc-windows-gnu/0.38.10/re.exe)
5959

6060
### Debian / Ubuntu
6161

62-
You can download a `.deb` package [here](https://reinfer.dev/public/cli/debian/reinfer-cli_0.38.9_amd64.deb).
62+
You can download a `.deb` package [here](https://reinfer.dev/public/cli/debian/reinfer-cli_0.38.10_amd64.deb).
6363

6464
### From Source
6565

@@ -207,4 +207,3 @@ conditions.
207207
## License
208208

209209
This project is licensed under Apache License, Version 2.0 ([LICENSE](LICENSE) or http://www.apache.org/licenses/LICENSE-2.0).
210-

api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reinfer-client"
3-
version = "0.38.9"
3+
version = "0.38.10"
44
description = "API client for Re:infer, the conversational data intelligence platform"
55
homepage = "https://github.com/reinfer/cli"
66
readme = "README.md"

api/src/resources/bucket.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,6 @@ pub struct GetKeyedSyncStateIdsRequest {
153153
pub mailbox_name: String,
154154
}
155155

156-
#[derive(Debug, Clone, Deserialize, Serialize, PartialEq, Eq)]
157-
pub(crate) struct DeleteKeyedSyncStateResponse {}
158-
159156
#[derive(Debug, Clone, Deserialize, Serialize, PartialEq, Eq)]
160157
pub(crate) struct GetKeyedSyncStateIdsResponse {
161158
pub keyed_sync_state_ids: Vec<KeyedSyncStateId>,

api/src/resources/dataset.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,8 @@ pub struct IterativeConfig {
169169
pub enum GptModelVersion {
170170
#[serde(rename = "gpt_4o_2024_05_13")]
171171
Gpt4o20240513,
172+
#[serde(rename = "gemini_2_5_flash")]
173+
GeminiFlash25,
172174
}
173175

174176
#[derive(Eq, Clone, Debug, PartialEq, Serialize, Deserialize)]

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reinfer-cli"
3-
version = "0.38.9"
3+
version = "0.38.10"
44
description = "Command line interface for Re:infer, the conversational data intelligence platform"
55
homepage = "https://github.com/reinfer/cli"
66
readme = "README.md"
@@ -36,7 +36,7 @@ serde_json = "1.0.87"
3636
structopt = { version = "0.3.26", default-features = false }
3737
url = { version = "2.3.1", features = ["serde"] }
3838

39-
reinfer-client = { version = "0.38.9", path = "../api" }
39+
reinfer-client = { version = "0.38.10", path = "../api" }
4040
dialoguer = { version="0.11.0", features = ["fuzzy-select"] }
4141
scoped_threadpool = "0.1.9"
4242
backoff = "0.4.0"

0 commit comments

Comments
 (0)