Przeglądaj źródła

fix: change repo url to the right one (AnyaCoder -> fishaudio) (#143)

Blaise 1 rok temu
rodzic
commit
89e2aa938f

+ 1 - 1
fish_speech/webui/html/footer.html

@@ -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>

+ 3 - 3
fish_speech/webui/launch_utils.py

@@ -35,7 +35,7 @@ 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;
@@ -43,7 +43,7 @@ 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>
 """
 
 
@@ -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("--------------------------------------------------------")