CoolFace
Apppublic

lenML/ChatTTS-Forge

sourceHugging Faceagpl-3.0updated 2y agoView on Hugging Face
301likes
readme_tab.py14 linesDownload Raw Back to webui
1import gradio as gr2 3 4def read_local_readme():5    with open("README.md", "r", encoding="utf-8") as file:6        content = file.read()7        content = content[content.index("# ") :]8        return content9 10 11def create_readme_tab():12    readme_content = read_local_readme()13    gr.Markdown(readme_content, elem_classes=["no-translate"])14