Skip to content

Commit

Permalink
fix: change repo url to the right one (AnyaCoder -> fishaudio) (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisewf committed Apr 30, 2024
1 parent 615c839 commit 89e2aa9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fish_speech/webui/html/footer.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div style="color: rgba(25,255,205,0.7) !important;">
<a href="{api_docs}">API</a>
 • 
<a href="https://github.com/AnyaCoder/fish-speech">Github</a>
<a href="https://github.com/fishaudio/fish-speech">Github</a>
 • 
<a href="https://gradio.app">Gradio</a>
</div>
Expand Down
6 changes: 3 additions & 3 deletions fish_speech/webui/launch_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ def versions_html():
hash = commit.strip("'").split(" ")[0]

return f"""
version: <a href="https://github.com/AnyaCoder/fish-speech/commit/{hash}">{hash}</a>
version: <a href="https://github.com/fishaudio/fish-speech/commit/{hash}">{hash}</a>
&#x2000;•&#x2000;
python: <span title="{sys.version}">{python_version}</span>
&#x2000;•&#x2000;
torch: {getattr(torch, '__long_version__',torch.__version__)}
&#x2000;•&#x2000;
gradio: {gr.__version__}
&#x2000;•&#x2000;
author: <a href="https://github.com/AnyaCoder">laziman/AnyaCoder</a>
author: <a href="https://github.com/fishaudio">fishaudio</a>
"""


Expand All @@ -52,7 +52,7 @@ def version_check(commit):
import requests

commits = requests.get(
"https://api.github.com/repos/AnyaCoder/fish-speech/branches/main"
"https://api.github.com/repos/fishaudio/fish-speech/branches/main"
).json()
if commit != "<none>" and commits["commit"]["sha"] != commit:
print("--------------------------------------------------------")
Expand Down

0 comments on commit 89e2aa9

Please sign in to comment.