Commit
Β·
bcf11a1
1
Parent(s):
9f6cec6
Update submission success message and add URL prompt in task_1 script
Browse files
gradio_interface.py
CHANGED
@@ -90,7 +90,7 @@ def add_submission(file):
|
|
90 |
refresh_submissions()
|
91 |
submissions.append(
|
92 |
{"user": username, "task": task, "submitted_time": submission_time})
|
93 |
-
return "πͺππ Submissions
|
94 |
except Exception as e:
|
95 |
raise Exception(f"Error adding submission: {e}")
|
96 |
|
|
|
90 |
refresh_submissions()
|
91 |
submissions.append(
|
92 |
{"user": username, "task": task, "submitted_time": submission_time})
|
93 |
+
return "πͺππ Submissions registered successfully to the system!"
|
94 |
except Exception as e:
|
95 |
raise Exception(f"Error adding submission: {e}")
|
96 |
|
medvqa/competitions/gi-2025/task_1.py
CHANGED
@@ -81,3 +81,5 @@ else:
|
|
81 |
api_name="/add_submission"
|
82 |
)
|
83 |
print(result)
|
|
|
|
|
|
81 |
api_name="/add_submission"
|
82 |
)
|
83 |
print(result)
|
84 |
+
print("Visit this URL to see the entry: π")
|
85 |
+
Client("SushantGautam/medvqa")
|