Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ response_dict = code_editor(code_prompt, lang=editor_language, height=[15,15], o
|
|
62 |
if response_dict['type'] == 'submit':
|
63 |
code = response_dict['text']
|
64 |
|
65 |
-
with st.spinner('Ok, give me a sec...'):
|
66 |
response = post_task(monolith_language, code, libraries, timeout, profiling)
|
67 |
task_id = response['task_id']
|
68 |
st.write(f"Task ID: {task_id}")
|
|
|
62 |
if response_dict['type'] == 'submit':
|
63 |
code = response_dict['text']
|
64 |
|
65 |
+
with st.spinner('Ok, give me a sec...', show_time=True):
|
66 |
response = post_task(monolith_language, code, libraries, timeout, profiling)
|
67 |
task_id = response['task_id']
|
68 |
st.write(f"Task ID: {task_id}")
|