Spaces:
Runtime error
Runtime error
add basic logic
Browse files
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 |
|