|
import streamlit as st |
|
from datetime import datetime |
|
import time |
|
from transformers import pipeline |
|
|
|
|
|
tts = pipeline("text-to-speech", model="facebook/tts_transformer-en-ljspeech") |
|
|
|
def get_current_time(): |
|
|
|
now = datetime.now() |
|
current_time = now.strftime("%H:%M:%S") |
|
return current_time |
|
|
|
def clock_app(): |
|
st.title("Hugging Face Clock App") |
|
|
|
|
|
time_display = st.empty() |
|
|
|
while True: |
|
|
|
current_time = get_current_time() |
|
|
|
|
|
time_display.text(f"Current Time: {current_time}") |
|
|
|
|
|
tts(f"The current time is {current_time}") |
|
|
|
|
|
time.sleep(1) |
|
|
|
|
|
if __name__ == "__main__": |
|
clock_app() |