Create requirements.txt
Browse files- requirements.txt +23 -0
requirements.txt
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core Streamlit and Web Components
|
2 |
+
streamlit==1.38.0
|
3 |
+
streamlit-components==0.1.1 # For custom components (if needed, though not explicitly used here)
|
4 |
+
|
5 |
+
# WebSocket Support
|
6 |
+
websockets==12.0
|
7 |
+
|
8 |
+
# Audio Processing
|
9 |
+
edge-tts==6.1.12 # For text-to-speech generation
|
10 |
+
audio-recorder-streamlit==0.0.8 # For recording audio in Streamlit
|
11 |
+
|
12 |
+
# Asyncio Nesting
|
13 |
+
nest_asyncio==1.6.0
|
14 |
+
|
15 |
+
# File and Data Handling
|
16 |
+
pillow==10.4.0 # For image processing (if image pasting is added later)
|
17 |
+
pytz==2024.1 # For timezone handling
|
18 |
+
|
19 |
+
# General Utilities
|
20 |
+
requests==2.32.3 # 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)
|