Spaces:
Sleeping
Sleeping
Aziz Alto
commited on
Commit
Β·
51c318e
1
Parent(s):
d8b9051
Update app.py
Browse files
app.py
CHANGED
@@ -18,13 +18,13 @@ from streamlit_pandas_profiling import st_profile_report
|
|
18 |
|
19 |
st.set_page_config(page_title="PySQLify", page_icon="π", layout="wide")
|
20 |
st.title("Auto-PySQLify")
|
21 |
-
st.markdown("> #### [NYC AI Hackathon](https://tech.cornell.edu/events/nyc-gpt-llm-hackathon/) April, 23 2023", unsafe_allow_html=True)
|
22 |
header = """
|
23 |
> _Automated Data Analysis_ Tool for analzying datasets with auto generated Python / SQL code using natural language.
|
24 |
|
25 |
> `GPT-powered` and `Jupyter notebook-inspired`
|
26 |
"""
|
27 |
st.markdown(header, unsafe_allow_html=True)
|
|
|
28 |
|
29 |
if "OPENAI_API_KEY" not in os.environ:
|
30 |
os.environ["OPENAI_API_KEY"] = st.text_input("OpenAI API Key", type="password")
|
|
|
18 |
|
19 |
st.set_page_config(page_title="PySQLify", page_icon="π", layout="wide")
|
20 |
st.title("Auto-PySQLify")
|
|
|
21 |
header = """
|
22 |
> _Automated Data Analysis_ Tool for analzying datasets with auto generated Python / SQL code using natural language.
|
23 |
|
24 |
> `GPT-powered` and `Jupyter notebook-inspired`
|
25 |
"""
|
26 |
st.markdown(header, unsafe_allow_html=True)
|
27 |
+
st.markdown("> <sub>[NYC AI Hackathon](https://tech.cornell.edu/events/nyc-gpt-llm-hackathon/) April, 23 2023</sub>", unsafe_allow_html=True)
|
28 |
|
29 |
if "OPENAI_API_KEY" not in os.environ:
|
30 |
os.environ["OPENAI_API_KEY"] = st.text_input("OpenAI API Key", type="password")
|