Spaces:
Running
Running
luigi12345
commited on
Commit
•
12af378
1
Parent(s):
72d5e51
Update app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,7 @@ import os
|
|
5 |
# Page configuration
|
6 |
st.set_page_config(page_title="AutoInterpreter", layout="wide")
|
7 |
|
|
|
8 |
# Initialize session state for settings if not exists
|
9 |
if "settings" not in st.session_state:
|
10 |
st.session_state.settings = {
|
@@ -19,7 +20,8 @@ if "settings" not in st.session_state:
|
|
19 |
# Create header with title and settings button
|
20 |
col1, col2 = st.columns([0.9, 0.1])
|
21 |
with col1:
|
22 |
-
st.
|
|
|
23 |
with col2:
|
24 |
settings_button = st.button("⚙️", help="Settings")
|
25 |
|
|
|
5 |
# Page configuration
|
6 |
st.set_page_config(page_title="AutoInterpreter", layout="wide")
|
7 |
|
8 |
+
|
9 |
# Initialize session state for settings if not exists
|
10 |
if "settings" not in st.session_state:
|
11 |
st.session_state.settings = {
|
|
|
20 |
# Create header with title and settings button
|
21 |
col1, col2 = st.columns([0.9, 0.1])
|
22 |
with col1:
|
23 |
+
st.markdown("# Autointerpreter")
|
24 |
+
st.markdown("Run Any Code. The Final AI Coding Experience.")
|
25 |
with col2:
|
26 |
settings_button = st.button("⚙️", help="Settings")
|
27 |
|