diff --git a/Cargo.lock b/Cargo.lock index aefa6a32..7dd90d03 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4404,7 +4404,7 @@ checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0" [[package]] name = "rig-core" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "assert_fs", @@ -4424,7 +4424,7 @@ dependencies = [ [[package]] name = "rig-lancedb" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "arrow-array", @@ -4438,7 +4438,7 @@ dependencies = [ [[package]] name = "rig-mongodb" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "futures", @@ -4452,7 +4452,7 @@ dependencies = [ [[package]] name = "rig-neo4j" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "futures", @@ -4468,7 +4468,7 @@ dependencies = [ [[package]] name = "rig-qdrant" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "qdrant-client", diff --git a/rig-core/CHANGELOG.md b/rig-core/CHANGELOG.md index c5564daf..8efa66c7 100644 --- a/rig-core/CHANGELOG.md +++ b/rig-core/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.2](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.4.1...rig-core-v0.4.2) - 2024-11-22 + +### Added + +- *(provider)* xAI (grok) integration ([#106](https://github.com/0xPlaygrounds/rig/pull/106)) + +### Fixed + +- *(rig-lancedb)* rag embedding filtering ([#104](https://github.com/0xPlaygrounds/rig/pull/104)) + ## [0.4.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.4.0...rig-core-v0.4.1) - 2024-11-13 ### Other diff --git a/rig-core/Cargo.toml b/rig-core/Cargo.toml index 63cd23e5..35d07b67 100644 --- a/rig-core/Cargo.toml +++ b/rig-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-core" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT" readme = "README.md" diff --git a/rig-lancedb/CHANGELOG.md b/rig-lancedb/CHANGELOG.md index 3803f2f9..cbff9123 100644 --- a/rig-lancedb/CHANGELOG.md +++ b/rig-lancedb/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.1.2...rig-lancedb-v0.1.3) - 2024-11-22 + +### Fixed + +- *(rig-lancedb)* rag embedding filtering ([#104](https://github.com/0xPlaygrounds/rig/pull/104)) + ## [0.1.2](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.1.1...rig-lancedb-v0.1.2) - 2024-11-13 ### Other diff --git a/rig-lancedb/Cargo.toml b/rig-lancedb/Cargo.toml index 0eb5fdbe..05c4756f 100644 --- a/rig-lancedb/Cargo.toml +++ b/rig-lancedb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-lancedb" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "MIT" readme = "README.md" @@ -9,7 +9,7 @@ repository = "https://github.com/0xPlaygrounds/rig" [dependencies] lancedb = "0.10.0" -rig-core = { path = "../rig-core", version = "0.4.1" } +rig-core = { path = "../rig-core", version = "0.4.2" } arrow-array = "52.2.0" serde_json = "1.0.128" serde = "1.0.210" diff --git a/rig-mongodb/CHANGELOG.md b/rig-mongodb/CHANGELOG.md index 2a77cad6..8b09785a 100644 --- a/rig-mongodb/CHANGELOG.md +++ b/rig-mongodb/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.6](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.1.5...rig-mongodb-v0.1.6) - 2024-11-22 + +### Fixed + +- *(rig-mongodb)* remove embeddings from `top_n` lookup ([#115](https://github.com/0xPlaygrounds/rig/pull/115)) + ## [0.1.5](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.1.4...rig-mongodb-v0.1.5) - 2024-11-13 ### Other diff --git a/rig-mongodb/Cargo.toml b/rig-mongodb/Cargo.toml index edb755e0..6cd50adb 100644 --- a/rig-mongodb/Cargo.toml +++ b/rig-mongodb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-mongodb" -version = "0.1.5" +version = "0.1.6" edition = "2021" license = "MIT" readme = "README.md" @@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig" [dependencies] futures = "0.3.30" mongodb = "2.8.2" -rig-core = { path = "../rig-core", version = "0.4.1" } +rig-core = { path = "../rig-core", version = "0.4.2" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" tracing = "0.1.40" diff --git a/rig-neo4j/CHANGELOG.md b/rig-neo4j/CHANGELOG.md index 649c088f..8c0cad2b 100644 --- a/rig-neo4j/CHANGELOG.md +++ b/rig-neo4j/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.1.2...rig-neo4j-v0.1.3) - 2024-11-22 + +### Other + +- updated the following local packages: rig-core + ## [0.1.2](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.1.1...rig-neo4j-v0.1.2) - 2024-11-13 ### Other diff --git a/rig-neo4j/Cargo.toml b/rig-neo4j/Cargo.toml index a0a94633..3709a8a4 100644 --- a/rig-neo4j/Cargo.toml +++ b/rig-neo4j/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-neo4j" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "MIT" readme = "README.md" @@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig" [dependencies] futures = "0.3.30" neo4rs = "0.8.0" -rig-core = { path = "../rig-core", version = "0.4.1" } +rig-core = { path = "../rig-core", version = "0.4.2" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" tracing = "0.1.40" diff --git a/rig-qdrant/CHANGELOG.md b/rig-qdrant/CHANGELOG.md index 7fd3f2c4..1fb33759 100644 --- a/rig-qdrant/CHANGELOG.md +++ b/rig-qdrant/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.2...rig-qdrant-v0.1.3) - 2024-11-22 + +### Other + +- updated the following local packages: rig-core + ## [0.1.2](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.1...rig-qdrant-v0.1.2) - 2024-11-13 ### Other diff --git a/rig-qdrant/Cargo.toml b/rig-qdrant/Cargo.toml index 4a7360a9..d593eef8 100644 --- a/rig-qdrant/Cargo.toml +++ b/rig-qdrant/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rig-qdrant" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "MIT" readme = "README.md" @@ -8,7 +8,7 @@ description = "Rig vector store index integration for Qdrant. https://qdrant.tec repository = "https://github.com/0xPlaygrounds/rig" [dependencies] -rig-core = { path = "../rig-core", version = "0.4.1" } +rig-core = { path = "../rig-core", version = "0.4.2" } serde_json = "1.0.128" serde = "1.0.210" qdrant-client = "1.12.1"