Update requirements.txt
Browse files- requirements.txt +9 -9
requirements.txt
CHANGED
@@ -1,23 +1,23 @@
|
|
1 |
# Core Streamlit and Web Components
|
2 |
-
streamlit
|
3 |
-
streamlit-components
|
4 |
|
5 |
# WebSocket Support
|
6 |
-
websockets
|
7 |
|
8 |
# Audio Processing
|
9 |
-
edge-tts
|
10 |
-
audio-recorder-streamlit
|
11 |
|
12 |
# Asyncio Nesting
|
13 |
-
nest_asyncio
|
14 |
|
15 |
# File and Data Handling
|
16 |
-
pillow
|
17 |
-
pytz
|
18 |
|
19 |
# General Utilities
|
20 |
-
requests
|
21 |
|
22 |
# Optional: If you add transcription or advanced features later
|
23 |
# whisper # Uncomment and specify version if audio transcription is added (e.g., openai-whisper)
|
|
|
1 |
# Core Streamlit and Web Components
|
2 |
+
streamlit
|
3 |
+
streamlit-components # For custom components (if needed, though not explicitly used here)
|
4 |
|
5 |
# WebSocket Support
|
6 |
+
websockets
|
7 |
|
8 |
# Audio Processing
|
9 |
+
edge-tts # For text-to-speech generation
|
10 |
+
audio-recorder-streamlit # For recording audio in Streamlit
|
11 |
|
12 |
# Asyncio Nesting
|
13 |
+
nest_asyncio
|
14 |
|
15 |
# File and Data Handling
|
16 |
+
pillow # For image processing (if image pasting is added later)
|
17 |
+
pytz # For timezone handling
|
18 |
|
19 |
# General Utilities
|
20 |
+
requests # For potential external API calls (not used here but common in such apps)
|
21 |
|
22 |
# Optional: If you add transcription or advanced features later
|
23 |
# whisper # Uncomment and specify version if audio transcription is added (e.g., openai-whisper)
|