qiqiWav commited on
Commit
e43efeb
β€’
1 Parent(s): 2f24e2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -14,7 +14,7 @@ def process_inputs(model_id, q_method, email, oauth_token: gr.OAuthToken | None,
14
  input_hash = hash((model_id, q_method, oauth_token.token, profile.username))
15
 
16
  if input_hash in processed_inputs and processed_inputs[input_hash] == 200:
17
- return " This request has already been submitted successfully. Please do not submit the same request multiple times."
18
 
19
  url = "https://sdk.nexa4ai.com/task"
20
 
@@ -40,7 +40,7 @@ def process_inputs(model_id, q_method, email, oauth_token: gr.OAuthToken | None,
40
 
41
  if response.status_code == 200:
42
  processed_inputs[input_hash] = 200
43
- return " Your request has been submitted successfully. We will notify you by email once processing is complete. There is no need to submit the same request multiple times."
44
  else:
45
  processed_inputs[input_hash] = response.status_code
46
  return f" Failed to submit request: {response.text}"
 
14
  input_hash = hash((model_id, q_method, oauth_token.token, profile.username))
15
 
16
  if input_hash in processed_inputs and processed_inputs[input_hash] == 200:
17
+ return "Oops! 😲 Looks like you've already submitted this task πŸš€. Please hang tight! We'll send you an email with all the details once it's ready πŸ’Œ. Thanks for your patience! 😊"
18
 
19
  url = "https://sdk.nexa4ai.com/task"
20
 
 
40
 
41
  if response.status_code == 200:
42
  processed_inputs[input_hash] = 200
43
+ return "Your request has been submitted successfully! 🌟 We'll notify you by email πŸ“§ once everything is processed. 😊"
44
  else:
45
  processed_inputs[input_hash] = response.status_code
46
  return f" Failed to submit request: {response.text}"