Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -69,8 +69,8 @@ def ui():
|
|
| 69 |
verbose=True,
|
| 70 |
memory=ConversationBufferWindowMemory(k=2)
|
| 71 |
)
|
| 72 |
-
good_morining_audio=librosa.load('./good-morning.mp3')
|
| 73 |
-
hi_audio=librosa.load('./good-morning-sir.mp3')
|
| 74 |
if 'history' not in st.session_state:
|
| 75 |
st.session_state['history'] = []
|
| 76 |
|
|
|
|
| 69 |
verbose=True,
|
| 70 |
memory=ConversationBufferWindowMemory(k=2)
|
| 71 |
)
|
| 72 |
+
good_morining_audio,sample_rate=librosa.load('./good-morning.mp3')
|
| 73 |
+
hi_audio,sample_rate=librosa.load('./good-morning-sir.mp3')
|
| 74 |
if 'history' not in st.session_state:
|
| 75 |
st.session_state['history'] = []
|
| 76 |
|