Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -108,6 +108,8 @@ css = """
|
|
| 108 |
|
| 109 |
st.write(css, unsafe_allow_html=True)
|
| 110 |
|
|
|
|
|
|
|
| 111 |
#--------------
|
| 112 |
def load_credentials(filepath):
|
| 113 |
with open(filepath, 'r') as file:
|
|
@@ -153,8 +155,6 @@ if st.session_state.logged_in:
|
|
| 153 |
st.sidebar.write(f"Welcome, {st.session_state.username}!")
|
| 154 |
if st.sidebar.button('Logout'):
|
| 155 |
logout()
|
| 156 |
-
|
| 157 |
-
st.sidebar.image('StratXcel.png', width=150)
|
| 158 |
#-------------
|
| 159 |
llm=ChatGroq(groq_api_key=groq_api_key,
|
| 160 |
model_name="Llama-3.1-70b-Versatile", temperature = 0.0, streaming=True)
|
|
|
|
| 108 |
|
| 109 |
st.write(css, unsafe_allow_html=True)
|
| 110 |
|
| 111 |
+
st.sidebar.image('StratXcel.png', width=150)
|
| 112 |
+
|
| 113 |
#--------------
|
| 114 |
def load_credentials(filepath):
|
| 115 |
with open(filepath, 'r') as file:
|
|
|
|
| 155 |
st.sidebar.write(f"Welcome, {st.session_state.username}!")
|
| 156 |
if st.sidebar.button('Logout'):
|
| 157 |
logout()
|
|
|
|
|
|
|
| 158 |
#-------------
|
| 159 |
llm=ChatGroq(groq_api_key=groq_api_key,
|
| 160 |
model_name="Llama-3.1-70b-Versatile", temperature = 0.0, streaming=True)
|