Skip to content

Commit fd6460b

Browse files
chore(deps): update rig-core requirement from 0.29.0 to 0.31.0 (#679)
* chore(deps): update rig-core requirement from 0.29.0 to 0.31.0 Updates the requirements on [rig-core](https://github.com/0xPlaygrounds/rig) to permit the latest version. - [Release notes](https://github.com/0xPlaygrounds/rig/releases) - [Commits](0xPlaygrounds/rig@rig-core-v0.29.0...rig-core-v0.31.0) --- updated-dependencies: - dependency-name: rig-core dependency-version: 0.31.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fix: address breaking changes --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dale Seo <5466341+DaleSeo@users.noreply.github.com>
1 parent 83808d3 commit fd6460b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/rig-integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = { workspace = true }
1313
publish = false
1414

1515
[dependencies]
16-
rig-core = "0.29.0"
16+
rig-core = "0.31.0"
1717
tokio = { version = "1", features = ["full"] }
1818
rmcp = { workspace = true, features = [
1919
"client",

examples/rig-integration/src/chat.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ where
4646
output_agent(&text, &mut output).await?;
4747
}
4848
Ok(MultiTurnStreamItem::StreamAssistantItem(
49-
StreamedAssistantContent::ToolCall(tool_call),
49+
StreamedAssistantContent::ToolCall { tool_call, .. },
5050
)) => {
5151
let name = &tool_call.function.name;
5252
let arguments = &tool_call.function.arguments;

0 commit comments

Comments
 (0)