Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -20,6 +20,9 @@ with st.form('my_form'):
|
|
20 |
if submitted and openai_api_key.startswith('sk-'):
|
21 |
generate_response(text)
|
22 |
'''
|
|
|
|
|
|
|
23 |
|
24 |
import streamlit as st
|
25 |
from wordcloud import WordCloud
|
|
|
20 |
if submitted and openai_api_key.startswith('sk-'):
|
21 |
generate_response(text)
|
22 |
'''
|
23 |
+
import os
|
24 |
+
|
25 |
+
os.system('pip install -e ./wordcloud')
|
26 |
|
27 |
import streamlit as st
|
28 |
from wordcloud import WordCloud
|