Spaces:
Running
Running
Update bin_public/utils/utils.py
Browse files
bin_public/utils/utils.py
CHANGED
|
@@ -498,8 +498,13 @@ def versions_html():
|
|
| 498 |
commit_info = "unknown \U0001F615"
|
| 499 |
return f"""
|
| 500 |
Python: <span title="{sys.version}">{python_version}</span>
|
| 501 |
-
•
|
| 502 |
Gradio: {gr.__version__}
|
| 503 |
-
•
|
| 504 |
Commit: {commit_info}
|
| 505 |
-
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 498 |
commit_info = "unknown \U0001F615"
|
| 499 |
return f"""
|
| 500 |
Python: <span title="{sys.version}">{python_version}</span>
|
|
|
|
| 501 |
Gradio: {gr.__version__}
|
|
|
|
| 502 |
Commit: {commit_info}
|
| 503 |
+
"""
|
| 504 |
+
|
| 505 |
+
def get_function_content(functions, selection):
|
| 506 |
+
return functions[selection]
|
| 507 |
+
|
| 508 |
+
|
| 509 |
+
def get_character_content(content):
|
| 510 |
+
return content
|