Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Deep-Unlearning
commited on
Commit
·
586823e
1
Parent(s):
cf96643
Add revai link
Browse files- utils_display.py +2 -0
utils_display.py
CHANGED
|
@@ -43,6 +43,8 @@ def make_clickable_model(model_name):
|
|
| 43 |
link = "https://platform.openai.com/docs/guides/speech-to-text"
|
| 44 |
elif model_name_list[0] == "assemblyai":
|
| 45 |
link = "https://www.assemblyai.com/docs"
|
|
|
|
|
|
|
| 46 |
else:
|
| 47 |
link = f"https://huggingface.co/{model_name}"
|
| 48 |
return f'<a target="_blank" href="{link}" style="color: var(--link-text-color); text-decoration: underline;text-decoration-style: dotted;">{model_name}</a>'
|
|
|
|
| 43 |
link = "https://platform.openai.com/docs/guides/speech-to-text"
|
| 44 |
elif model_name_list[0] == "assemblyai":
|
| 45 |
link = "https://www.assemblyai.com/docs"
|
| 46 |
+
elif model_name_list[0] == "revai":
|
| 47 |
+
link = "https://docs.rev.ai/api/asynchronous/get-started/"
|
| 48 |
else:
|
| 49 |
link = f"https://huggingface.co/{model_name}"
|
| 50 |
return f'<a target="_blank" href="{link}" style="color: var(--link-text-color); text-decoration: underline;text-decoration-style: dotted;">{model_name}</a>'
|