Initial Draft
Browse files
app.py
CHANGED
@@ -364,23 +364,7 @@ def main():
|
|
364 |
default="User Story"
|
365 |
)
|
366 |
ui_show_json = st.toggle("Show JSON", value=False)
|
367 |
-
st.text("")
|
368 |
-
|
369 |
-
# -- Recording Proxy Details
|
370 |
-
try:
|
371 |
-
st.subheader("HTTP Proxy")
|
372 |
-
ui_proxy_url = st.text_input("URL")
|
373 |
-
ui_no_proxy_url = st.text_input("No Proxy URL",value="localhost,127.0.0.1")
|
374 |
-
col1, col2, col3 = st.columns([0.60,0.85,1.40])
|
375 |
-
with col1:
|
376 |
-
if st.button("Set"):
|
377 |
-
fn_set_proxy(ui_proxy_url,ui_no_proxy_url)
|
378 |
-
with col2:
|
379 |
-
if st.button("Unset"):
|
380 |
-
fn_unset_proxy()
|
381 |
-
except Exception as e:
|
382 |
-
st.error('Error Configuring LLM Details',str(e))
|
383 |
-
fn_display_user_messages("Error updating proxy details","Error", ui_processing_message)
|
384 |
|
385 |
# -- Read LLM Configuration
|
386 |
st.text("")
|
|
|
364 |
default="User Story"
|
365 |
)
|
366 |
ui_show_json = st.toggle("Show JSON", value=False)
|
367 |
+
st.text("")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
368 |
|
369 |
# -- Read LLM Configuration
|
370 |
st.text("")
|