Spaces:
Running
Running
AjithBharadwaj
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ def main():
|
|
10 |
"""
|
11 |
<style>
|
12 |
body {
|
13 |
-
background-color: #
|
14 |
color: white;
|
15 |
}
|
16 |
</style>
|
@@ -19,9 +19,8 @@ def main():
|
|
19 |
)
|
20 |
|
21 |
st.sidebar.header("Input Parameters")
|
22 |
-
|
23 |
-
|
24 |
-
topic = st.sidebar.text_input("Topic", "Machine Learning")
|
25 |
word_count = st.sidebar.slider("Number of Words", min_value=50, max_value=1000, value=200, step=50)
|
26 |
|
27 |
if st.sidebar.button("Generate Blog"):
|
|
|
10 |
"""
|
11 |
<style>
|
12 |
body {
|
13 |
+
background-color: #121212;;
|
14 |
color: white;
|
15 |
}
|
16 |
</style>
|
|
|
19 |
)
|
20 |
|
21 |
st.sidebar.header("Input Parameters")
|
22 |
+
role = st.sidebar.text_input("Who is this intednded for ?", "Ex - Data Scientist")
|
23 |
+
topic = st.sidebar.text_input("On what Topic should the blog be on ?", "Ex - Machine Learning")
|
|
|
24 |
word_count = st.sidebar.slider("Number of Words", min_value=50, max_value=1000, value=200, step=50)
|
25 |
|
26 |
if st.sidebar.button("Generate Blog"):
|