Spaces:
Sleeping
Sleeping
improving requirements
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
from openai import OpenAI
|
2 |
import streamlit as st
|
|
|
3 |
from langchain_openai import ChatOpenAI
|
4 |
from tools import sentiment_analysis_util
|
5 |
import numpy as np
|
@@ -25,6 +26,8 @@ You are a sentiment analysis expert. Answer all questions related to cryptocurre
|
|
25 |
|
26 |
initialize_session_state()
|
27 |
|
|
|
|
|
28 |
sideb=st.sidebar
|
29 |
with st.sidebar:
|
30 |
prompt=st.text_input("Enter topic for sentiment analysis: ")
|
|
|
1 |
from openai import OpenAI
|
2 |
import streamlit as st
|
3 |
+
import utils as u
|
4 |
from langchain_openai import ChatOpenAI
|
5 |
from tools import sentiment_analysis_util
|
6 |
import numpy as np
|
|
|
26 |
|
27 |
initialize_session_state()
|
28 |
|
29 |
+
st.image('el_pic.png')
|
30 |
+
|
31 |
sideb=st.sidebar
|
32 |
with st.sidebar:
|
33 |
prompt=st.text_input("Enter topic for sentiment analysis: ")
|