Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -18,8 +18,21 @@ st.set_page_config(
|
|
| 18 |
|
| 19 |
|
| 20 |
init_state(st.session_state, config)
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
# Prompt Engineering Dashboard is working but not for production, works great for testing.
|
| 25 |
prompt_engineering_dashboard(st.session_state, config)
|
|
|
|
| 18 |
|
| 19 |
|
| 20 |
init_state(st.session_state, config)
|
| 21 |
+
html_title = '''
|
| 22 |
+
<style>
|
| 23 |
+
.stTitle {
|
| 24 |
+
color: #00008B; /* Deep blue color */
|
| 25 |
+
font-size: 36px; /* Adjust font size as desired */
|
| 26 |
+
font-weight: bold; /* Add boldness (optional) */
|
| 27 |
+
/* Add other font styling here (optional) */
|
| 28 |
+
}
|
| 29 |
+
</style>
|
| 30 |
+
<h1 class="stTitle">NCTC OSINT AGENT</h1>
|
| 31 |
+
'''
|
| 32 |
+
|
| 33 |
+
st.write(html_title, unsafe_allow_html=True)
|
| 34 |
+
|
| 35 |
+
# st.write("# NCTC OSINT AGENT ")
|
| 36 |
|
| 37 |
# Prompt Engineering Dashboard is working but not for production, works great for testing.
|
| 38 |
prompt_engineering_dashboard(st.session_state, config)
|