joaogante HF staff commited on
Commit
383f0d7
·
1 Parent(s): 74ce549

add basic logic

Browse files
Files changed (1) hide show
  1. app.py +13 -1
app.py CHANGED
@@ -56,7 +56,12 @@ INIT_MARKDOWN = """
56
 
57
   
58
 
59
- 👈 ...and a problem type
 
 
 
 
 
60
  """
61
  # =====================================================================================================================
62
 
@@ -120,6 +125,13 @@ with demo:
120
 
121
  button.click(get_suggestions, inputs=[task_type, model_name, problem_type], outputs=suggestions)
122
 
 
 
 
 
 
 
 
123
 
124
  # =====================================================================================================================
125
 
 
56
 
57
   
58
 
59
+ 👈 ... and a problem type...
60
+  
61
+
62
+  
63
+
64
+ 👈 ... then click here!
65
  """
66
  # =====================================================================================================================
67
 
 
125
 
126
  button.click(get_suggestions, inputs=[task_type, model_name, problem_type], outputs=suggestions)
127
 
128
+ gr.Markdown(
129
+ """
130
+ Is your problem not on the list? Need more suggestions? Have you spotted an error? Please open a
131
+ [new discussion](https://huggingface.co/spaces/joaogante/generate_quality_improvement/discussions) 🙏
132
+ """
133
+ )
134
+
135
 
136
  # =====================================================================================================================
137