Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ quick-xml = "0.38.0"
quote = "1.0.40"
rayon = "1.10.0"
reqwest = { version = "0.12.20", default-features = false }
rig-derive = { version = "0.1.3", path = "rig-core/rig-core-derive" }
rig-derive = { version = "0.1.4", path = "rig-core/rig-core-derive" }
rusqlite = "0.32"
scylla = "1.2.0"
# https://github.com/stevohuncho/mcp-core/issues/9
Expand All @@ -83,4 +83,4 @@ tracing-subscriber = "0.3.19"
uuid = "1.17.0"
worker = "0.6"
zerocopy = "0.8.26"
rig-core = { version = "0.13.0", path = "rig-core" }
rig-core = { version = "0.14.0", path = "rig-core" }
12 changes: 12 additions & 0 deletions rig-bedrock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.2.0...rig-bedrock-v0.2.1) - 2025-07-07

### Added

- *(rig-780)* integrate openAI responses API ([#508](https://github.com/0xPlaygrounds/rig/pull/508))

### Other

- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539))
- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538))
- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542))

## [0.2.0](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.3...rig-bedrock-v0.2.0) - 2025-06-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion rig-bedrock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-bedrock"
version = "0.2.0"
version = "0.2.1"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down
35 changes: 35 additions & 0 deletions rig-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.13.0...rig-core-v0.14.0) - 2025-07-07

### Added

- support inserting documents as a trait ([#563](https://github.com/0xPlaygrounds/rig/pull/563))
- Add max_tokens method to ExtractorBuilder ([#560](https://github.com/0xPlaygrounds/rig/pull/560))
- *(rig-780)* integrate openAI responses API ([#508](https://github.com/0xPlaygrounds/rig/pull/508))
- Stream cancellation using AbortHandle ([#525](https://github.com/0xPlaygrounds/rig/pull/525))
- *(rig-779)* allow extractor to be turned into inner agent ([#502](https://github.com/0xPlaygrounds/rig/pull/502))
- *(ollama)* add support for OLLAMA_API_BASE_URL environment var ([#541](https://github.com/0xPlaygrounds/rig/pull/541))
- *(rig-766)* add support for Voyage AI ([#493](https://github.com/0xPlaygrounds/rig/pull/493))
- *(rig-789)* add support for loading in pdfs/files as Vec<u8> ([#523](https://github.com/0xPlaygrounds/rig/pull/523))
- multi turn streaming example ([#413](https://github.com/0xPlaygrounds/rig/pull/413))
- *(rig-754)* support custom client configurations ([#511](https://github.com/0xPlaygrounds/rig/pull/511))

### Fixed

- Retain multi-turn tool call results in case of response error ([#526](https://github.com/0xPlaygrounds/rig/pull/526))
- *(rig-794)* parse openAI SSE response error ([#545](https://github.com/0xPlaygrounds/rig/pull/545))
- *(rig-796)* OpenRouter extractor fails ([#544](https://github.com/0xPlaygrounds/rig/pull/544))
- *(rig-792)* inconsistent implementations of with_custom_client ([#530](https://github.com/0xPlaygrounds/rig/pull/530))
- *(rig-783)* tool call example doesn't work with Gemini and OpenRouter ([#515](https://github.com/0xPlaygrounds/rig/pull/515))
- *(rig-773)* xAI embeddings endpoint is wrong ([#492](https://github.com/0xPlaygrounds/rig/pull/492))

### Other

- *(rig-803)* improve documentation for multi-turn ([#562](https://github.com/0xPlaygrounds/rig/pull/562))
- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539))
- update deps ([#543](https://github.com/0xPlaygrounds/rig/pull/543))
- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538))
- error fixes for clarity
- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542))
- *(rig-791)* documents not consistently added to DeepSeek prompts ([#528](https://github.com/0xPlaygrounds/rig/pull/528))
- Fix `ToolResult` serialization in ollama provider ([#504](https://github.com/0xPlaygrounds/rig/pull/504))

## [0.13.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.12.0...rig-core-v0.13.0) - 2025-06-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion rig-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-core"
version = "0.13.0"
version = "0.14.0"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down
12 changes: 12 additions & 0 deletions rig-core/rig-core-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.4](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.3...rig-derive-v0.1.4) - 2025-07-07

### Added

- *(rig-780)* integrate openAI responses API ([#508](https://github.com/0xPlaygrounds/rig/pull/508))

### Other

- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539))
- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538))
- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542))

## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.2...rig-derive-v0.1.3) - 2025-06-09

### Other
Expand Down
2 changes: 1 addition & 1 deletion rig-core/rig-core-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-derive"
version = "0.1.3"
version = "0.1.4"
edition = { workspace = true }
license = "MIT"
description = "Internal crate that implements Rig derive macros."
Expand Down
12 changes: 12 additions & 0 deletions rig-eternalai/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.8](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.7...rig-eternalai-v0.2.8) - 2025-07-07

### Added

- *(rig-780)* integrate openAI responses API ([#508](https://github.com/0xPlaygrounds/rig/pull/508))

### Other

- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539))
- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538))
- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542))

## [0.2.7](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.6...rig-eternalai-v0.2.7) - 2025-06-09

### Other
Expand Down
2 changes: 1 addition & 1 deletion rig-eternalai/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-eternalai"
version = "0.2.7"
version = "0.2.8"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions rig-fastembed/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.2.0...rig-fastembed-v0.2.1) - 2025-07-07

### Other

- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539))
- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538))
- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542))

## [0.2.0](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.6...rig-fastembed-v0.2.0) - 2025-06-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion rig-fastembed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-fastembed"
version = "0.2.0"
version = "0.2.1"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down
9 changes: 9 additions & 0 deletions rig-lancedb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.12](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.11...rig-lancedb-v0.2.12) - 2025-07-07

### Other

- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539))
- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538))
- Bump lancedb ([#537](https://github.com/0xPlaygrounds/rig/pull/537))
- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542))

## [0.2.11](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.10...rig-lancedb-v0.2.11) - 2025-06-09

### Other
Expand Down
2 changes: 1 addition & 1 deletion rig-lancedb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-lancedb"
version = "0.2.11"
version = "0.2.12"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down
16 changes: 16 additions & 0 deletions rig-milvus/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-milvus-v0.1.0...rig-milvus-v0.1.1) - 2025-07-07

### Added

- support inserting documents as a trait ([#563](https://github.com/0xPlaygrounds/rig/pull/563))

### Fixed

- *(rig-787)* discrepancy in rust crate editions ([#519](https://github.com/0xPlaygrounds/rig/pull/519))

### Other

- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539))
- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538))
- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542))

## [0.1.0](https://github.com/0xPlaygrounds/rig/releases/tag/rig-milvus-v0.1.0) - 2025-06-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion rig-milvus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-milvus"
version = "0.1.0"
version = "0.1.1"
edition = { workspace = true }
description = "Milvus vector store implementation for the rig framework"
license = "MIT"
Expand Down
8 changes: 8 additions & 0 deletions rig-mongodb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.12](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.11...rig-mongodb-v0.2.12) - 2025-07-07

### Other

- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539))
- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538))
- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542))

## [0.2.11](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.10...rig-mongodb-v0.2.11) - 2025-06-09

### Other
Expand Down
2 changes: 1 addition & 1 deletion rig-mongodb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-mongodb"
version = "0.2.11"
version = "0.2.12"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions rig-neo4j/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.12](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.11...rig-neo4j-v0.2.12) - 2025-07-07

### Other

- Migrate all crates to Rust 2024 ([#539](https://github.com/0xPlaygrounds/rig/pull/539))
- Declare shared dependencies in workspace ([#538](https://github.com/0xPlaygrounds/rig/pull/538))
- Make clippy happy on all targets ([#542](https://github.com/0xPlaygrounds/rig/pull/542))

## [0.2.11](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.10...rig-neo4j-v0.2.11) - 2025-06-09

### Other
Expand Down
2 changes: 1 addition & 1 deletion rig-neo4j/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-neo4j"
version = "0.2.11"
version = "0.2.12"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down
Loading