Spaces:
Build error
Build error
naourpally
commited on
Commit
·
efd2301
1
Parent(s):
d435c86
Add credits
Browse files
app.py
CHANGED
|
@@ -21,4 +21,13 @@ with gr.Blocks() as demo:
|
|
| 21 |
|
| 22 |
submit_button.click(fn=get_text_response, inputs=prompt, outputs=output)
|
| 23 |
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
submit_button.click(fn=get_text_response, inputs=prompt, outputs=output)
|
| 23 |
|
| 24 |
+
# Adding the acknowledgment about Fair Compute
|
| 25 |
+
gr.HTML(
|
| 26 |
+
"""
|
| 27 |
+
<div class="acknowledgments">
|
| 28 |
+
<p>Run AI models on your home computers, powered by <a href="https://faircompute.com/" style="text-decoration: underline;" target="_blank">FairCompute</a></p>
|
| 29 |
+
</div>
|
| 30 |
+
"""
|
| 31 |
+
)
|
| 32 |
+
|
| 33 |
+
demo.launch()
|