Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -92,7 +92,24 @@ with st.expander("Why Use GPT Researcher?", expanded=False):
|
|
| 92 |
For more details, visit the [GPT Researcher GitHub repository](https://github.com/assafelovic/gpt-researcher).
|
| 93 |
""")
|
| 94 |
|
| 95 |
-
query = st.text_input("Enter your research query:", "What is the Latest in Investing using AI?", help="Type your research question or topic.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
|
| 97 |
with st.sidebar.expander("How to Use", expanded=False):
|
| 98 |
st.markdown("""
|
|
|
|
| 92 |
For more details, visit the [GPT Researcher GitHub repository](https://github.com/assafelovic/gpt-researcher).
|
| 93 |
""")
|
| 94 |
|
| 95 |
+
#query = st.text_input("Enter your research query:", "What is the Latest in Investing using AI?", help="Type your research question or topic.")
|
| 96 |
+
|
| 97 |
+
|
| 98 |
+
st.markdown(
|
| 99 |
+
"""
|
| 100 |
+
<style>
|
| 101 |
+
.big-green-font {
|
| 102 |
+
font-size:20px !important;
|
| 103 |
+
font-weight: bold;
|
| 104 |
+
color: green;
|
| 105 |
+
}
|
| 106 |
+
</style>
|
| 107 |
+
""",
|
| 108 |
+
unsafe_allow_html=True,
|
| 109 |
+
)
|
| 110 |
+
|
| 111 |
+
st.markdown('<p class="big-green-font">Enter your research query:</p>', unsafe_allow_html=True)
|
| 112 |
+
query = st.text_input("", "What is the Latest in Investing using AI?", help="Type your research question or topic.")
|
| 113 |
|
| 114 |
with st.sidebar.expander("How to Use", expanded=False):
|
| 115 |
st.markdown("""
|