Spaces:
No application file
No application file
File size: 258 Bytes
3883c60 |
1 2 3 4 5 6 7 8 9 10 11 |
import os.path
import gradio
def get_gradio_readme(name):
return open(os.path.join(os.path.dirname(__file__), '..', '..', '..', 'readme', 'gradio', name), 'r', encoding='utf8').read()
def info_tab():
gradio.Markdown(get_gradio_readme('info.md'))
|