diff --git a/Cargo.toml b/Cargo.toml index ab8ca32..eb05d60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,6 @@ edition = "2021" [dependencies] teloxide = { git = "https://github.com/teloxide/teloxide", features = [ "macros", - ] } # we need some features from the master branch log = "^0.4" pretty_env_logger = "^0.5" @@ -23,6 +22,6 @@ enum-iterator = "2.1" ollama-rs = { version = "0.1.9", features = ["stream"] } tokio-stream = "0.1.15" image = "0.25.1" -aws-config = { version = "1.3", features = ["behavior-version-latest"] } -aws-sdk-bedrockruntime = "1.24" +aws-config = { version = "1.5", features = ["behavior-version-latest"] } +aws-sdk-bedrockruntime = "1.29" # indicatif = "0.17.8" diff --git a/src/commands/ollama.rs b/src/commands/ollama.rs index d12e24f..8afb1b1 100644 --- a/src/commands/ollama.rs +++ b/src/commands/ollama.rs @@ -114,7 +114,7 @@ pub async fn ollama( } if model == ModelType::Emojify { request = request.system( - "You are an Emojify bot. Convert the text entirely to emojis. Don't add any text." + "You are an Emojify bot. Convert the text entirely to emojis. Don't add any text. Don't add any disclaimers. Just emoji representation of the text." .to_string(), ); } diff --git a/src/models.rs b/src/models.rs index 17532c7..e3d0cab 100644 --- a/src/models.rs +++ b/src/models.rs @@ -67,7 +67,9 @@ impl ModelType { ModelType::BawialniaGPT, ModelType::PolishLobotomy, ModelType::Aya, - ModelType::Emojify + ModelType::Emojify, + ModelType::Phi3Llava, + ModelType::Moondream, ] }