HaryaniAnjali commited on
Commit
2eaff56
·
verified ·
1 Parent(s): ddde50d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -125,14 +125,13 @@ def generate_speech_from_text(message: str, huggingface_token: str) -> None:
125
 
126
  # Main function to tie everything together
127
  def main() -> None:
128
- st.set_page_config(page_title="Image to Story with RAG", page_icon="🖼️")
129
 
130
  with st.sidebar:
131
- st.write("### AI App created by @ Gurpreet Kaur")
132
  huggingface_token = st.text_input("Enter your Hugging Face Token:", type="password")
133
  openai_token = st.text_input("Enter your OpenAI API Key:", type="password")
134
 
135
- st.header("Image-to-Story with RAG")
136
 
137
  # Image uploader
138
  uploaded_file = st.file_uploader("Please choose an image to upload", type=["jpg", "jpeg", "png", "webp"])
 
125
 
126
  # Main function to tie everything together
127
  def main() -> None:
128
+ st.set_page_config(page_title="Image to Speech", page_icon="🖼️")
129
 
130
  with st.sidebar:
 
131
  huggingface_token = st.text_input("Enter your Hugging Face Token:", type="password")
132
  openai_token = st.text_input("Enter your OpenAI API Key:", type="password")
133
 
134
+ st.header("Image to Speech")
135
 
136
  # Image uploader
137
  uploaded_file = st.file_uploader("Please choose an image to upload", type=["jpg", "jpeg", "png", "webp"])