Update app.py
Browse files
app.py
CHANGED
|
@@ -3,6 +3,9 @@ import requests
|
|
| 3 |
from datetime import datetime
|
| 4 |
import time
|
| 5 |
|
|
|
|
|
|
|
|
|
|
| 6 |
# Define the API endpoint
|
| 7 |
API_URL = "https://startrz-proagents.hf.space/api/v1/prediction/cce3da9a-f1b9-4bf2-aab8-5462f52ac058"
|
| 8 |
|
|
@@ -74,9 +77,6 @@ if 'selected_suggestion' not in st.session_state:
|
|
| 74 |
if 'feedback' not in st.session_state:
|
| 75 |
st.session_state.feedback = {}
|
| 76 |
|
| 77 |
-
# Set page configuration
|
| 78 |
-
st.set_page_config(page_title="Evo", page_icon="🤖", layout="wide")
|
| 79 |
-
|
| 80 |
# Application title and description
|
| 81 |
st.title("Evo: Your AI Networking Assistant")
|
| 82 |
st.write("Explore networking topics with me! Type your question or click a suggestion below.")
|
|
|
|
| 3 |
from datetime import datetime
|
| 4 |
import time
|
| 5 |
|
| 6 |
+
# Set page configuration as the first Streamlit command
|
| 7 |
+
st.set_page_config(page_title="Evo", page_icon="🤖", layout="wide")
|
| 8 |
+
|
| 9 |
# Define the API endpoint
|
| 10 |
API_URL = "https://startrz-proagents.hf.space/api/v1/prediction/cce3da9a-f1b9-4bf2-aab8-5462f52ac058"
|
| 11 |
|
|
|
|
| 77 |
if 'feedback' not in st.session_state:
|
| 78 |
st.session_state.feedback = {}
|
| 79 |
|
|
|
|
|
|
|
|
|
|
| 80 |
# Application title and description
|
| 81 |
st.title("Evo: Your AI Networking Assistant")
|
| 82 |
st.write("Explore networking topics with me! Type your question or click a suggestion below.")
|