update docs

Former-commit-id: a4a2e94241bea6f96590f6cb8ca8b5cddee1917e
This commit is contained in:
hiyouga
2024-05-06 21:47:00 +08:00
parent 25de4ce56a
commit 5c9da798b5
44 changed files with 487 additions and 516 deletions

9
src/webui.py Normal file
View File

@@ -0,0 +1,9 @@
from llmtuner.webui.interface import create_ui
def main():
create_ui().queue().launch(server_name="0.0.0.0", server_port=None, share=False)
if __name__ == "__main__":
main()