justmywyw's picture
Upload folder using huggingface_hub
630cbf4 verified
raw
history blame
417 Bytes
import os
from components.Docs import Docs
def resolve(relative_path: str):
return os.path.join(os.path.dirname(__file__), relative_path)
docs = Docs(
__file__,
markdown_files=(["README.md"] + [
f"custom_tags/{file_name}"
for file_name in os.listdir(resolve('custom_tags'))
if file_name.endswith(".md")
]),
)
if __name__ == "__main__":
docs.render().queue().launch()