Spaces:
Running
Running
Remove dotenv import from app.py and add Twilio dependency to requirements.txt for enhanced functionality.
Browse files- app.py +0 -2
- requirements.txt +1 -0
app.py
CHANGED
|
@@ -4,9 +4,7 @@ import numpy as np
|
|
| 4 |
import streamlit as st
|
| 5 |
from streamlit_webrtc import webrtc_streamer, WebRtcMode
|
| 6 |
from src.opencv_utils import OpenCVUtils
|
| 7 |
-
from dotenv import load_dotenv
|
| 8 |
|
| 9 |
-
load_dotenv()
|
| 10 |
st.set_page_config(page_title="OpenCV Explorer", page_icon="🎨", layout="wide")
|
| 11 |
|
| 12 |
|
|
|
|
| 4 |
import streamlit as st
|
| 5 |
from streamlit_webrtc import webrtc_streamer, WebRtcMode
|
| 6 |
from src.opencv_utils import OpenCVUtils
|
|
|
|
| 7 |
|
|
|
|
| 8 |
st.set_page_config(page_title="OpenCV Explorer", page_icon="🎨", layout="wide")
|
| 9 |
|
| 10 |
|
requirements.txt
CHANGED
|
@@ -4,3 +4,4 @@ numpy==1.24.4
|
|
| 4 |
streamlit==1.41.1
|
| 5 |
streamlit-webrtc==0.62.4
|
| 6 |
Pillow==11.2.1
|
|
|
|
|
|
| 4 |
streamlit==1.41.1
|
| 5 |
streamlit-webrtc==0.62.4
|
| 6 |
Pillow==11.2.1
|
| 7 |
+
twilio~=9.4.3
|