From 83ed5a9fb9d2ac6c8befb4320ea0c3cae411b8a4 Mon Sep 17 00:00:00 2001 From: pliny <133052465+elder-plinius@users.noreply.github.com> Date: Sun, 13 Oct 2024 06:49:38 -0400 Subject: [PATCH] Update app.py --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 60d4a91..659f354 100644 --- a/app.py +++ b/app.py @@ -140,12 +140,12 @@ def main(): # Conditional UI based on the selection if option == "Text": - st.subheader("Text Embedding Options") + st.subheader("Text Embedding") if not enable_jailbreak: master_plan = st.text_area("Enter text to encode into the image:", "", help="Enter the text you want to hide in the image.") encoding_plane = st.selectbox("Select the color plane for embedding text:", ["RGB", "R", "G", "B", "A"], help="Choose which color channels to use for embedding.") else: - st.subheader("Zlib File Embedding Options") + st.subheader("Zlib File Embedding") uploaded_file_zlib = st.file_uploader("Upload a file to embed (it will be zlib compressed):", type=None, help="Upload a file that will be compressed and hidden in the image.") encoding_plane = st.selectbox("Select the color plane for embedding compressed file:", ["RGB", "R", "G", "B", "A"], help="Choose which color channels to use for embedding.")