Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -61,6 +61,23 @@ access_token = os.getenv('eRAG_access_token')
|
|
61 |
headers = {
|
62 |
"Authorization": f"Bearer {access_token}"
|
63 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
api_url = os.getenv('api_url')
|
65 |
with st.form(key="input_form"):
|
66 |
user_input = st.text_input("ป้อนคำ ข้อความ หรือประโยคที่ต้องการค้นหา:", value="ข้อมูลส่วนบุคคล คืออะไร มีกี่ประเภท", key="input")
|
|
|
61 |
headers = {
|
62 |
"Authorization": f"Bearer {access_token}"
|
63 |
}
|
64 |
+
|
65 |
+
st.markdown("""
|
66 |
+
<style>
|
67 |
+
.stTextInput>div>div>input {
|
68 |
+
background-color: #d3f9d8;
|
69 |
+
color: black;
|
70 |
+
cursor: text;
|
71 |
+
caret-color: black;
|
72 |
+
}
|
73 |
+
|
74 |
+
.stTextInput>div>div>input:focus {
|
75 |
+
border-color: black;
|
76 |
+
outline-color: black;
|
77 |
+
}
|
78 |
+
</style>
|
79 |
+
""", unsafe_allow_html=True)
|
80 |
+
|
81 |
api_url = os.getenv('api_url')
|
82 |
with st.form(key="input_form"):
|
83 |
user_input = st.text_input("ป้อนคำ ข้อความ หรือประโยคที่ต้องการค้นหา:", value="ข้อมูลส่วนบุคคล คืออะไร มีกี่ประเภท", key="input")
|