-
Notifications
You must be signed in to change notification settings - Fork 109
/
st_app.py
35 lines (25 loc) · 1.08 KB
/
st_app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import streamlit as st
st.set_page_config(
page_title="Python Voice Assistant",
page_icon="🎙️",
layout="centered",
initial_sidebar_state="auto",
)
st.title("Python-Voice-Assistant-Suryanshsk")
st.write(
"Welcome to the Python Voice Assistant! This app demonstrates how to build a simple voice assistant using Python."
)
st.markdown('''
# Features
- **Voice Recognition**: Processes and understands spoken commands.
- **Text-to-Speech**: Converts text responses into spoken output.
- **Weather Information**: Provides real-time weather updates.
- **News Updates**: Fetches the latest news headlines.
- **Jokes**: Delivers a variety of jokes.
- **Wikipedia Information**: Retrieves data from Wikipedia.
- **Music Management**: Handles and plays music.
- **Web Interface**: Interactive frontend with animations.
- **Your Question**: It Give Answer OF Your Questions.
## Virtual Assistant with Gemini AI
A sophisticated Python-based virtual assistant utilizing Gemini AI. This project integrates various functionalities to create a versatile and interactive assistant.
''')