From 53ba1d3eb3fa4ee4ff997dd3684011d4a0f8f644 Mon Sep 17 00:00:00 2001 From: Alfredo Gallardo Date: Tue, 10 Sep 2024 20:34:26 -0300 Subject: [PATCH] - fix: enable local pdf parsing (#549) --- Cargo.lock | 2 +- shinkai-bin/shinkai-node/Cargo.toml | 2 +- shinkai-bin/shinkai-node/src/db/db_settings.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 477fe7549..c500396d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9173,7 +9173,7 @@ dependencies = [ [[package]] name = "shinkai_node" -version = "0.8.1" +version = "0.8.2" dependencies = [ "aes-gcm", "anyhow", diff --git a/shinkai-bin/shinkai-node/Cargo.toml b/shinkai-bin/shinkai-node/Cargo.toml index 142b20396..ed01027a4 100644 --- a/shinkai-bin/shinkai-node/Cargo.toml +++ b/shinkai-bin/shinkai-node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shinkai_node" -version = "0.8.1" +version = "0.8.2" edition = "2021" authors.workspace = true # this causes `cargo run` in the workspace root to run this package diff --git a/shinkai-bin/shinkai-node/src/db/db_settings.rs b/shinkai-bin/shinkai-node/src/db/db_settings.rs index 5dc75731c..74fc34735 100644 --- a/shinkai-bin/shinkai-node/src/db/db_settings.rs +++ b/shinkai-bin/shinkai-node/src/db/db_settings.rs @@ -14,7 +14,7 @@ impl ShinkaiDB { let preference: bool = serde_json::from_slice(&value)?; Ok(preference) } - None => Ok(false), // Note(change): Default to true if the setting does not exist + None => Ok(true), } }