Skip to content

Commit e4fee38

Browse files
authored
Merge pull request #100 from zheliuyu/main
[refactor] Apply the #95 scheme in VeOmni, LLaMA-Factory and ms-swift
2 parents 5a12a2f + 82e8782 commit e4fee38

30 files changed

Lines changed: 92 additions & 902 deletions

.gitmodules

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
[submodule "_repos/verl"]
22
path = _repos/verl
33
url = https://github.com/volcengine/verl.git
4+
[submodule "_repos/LLaMA-Factory"]
5+
path = _repos/LLaMA-Factory
6+
url = https://github.com/the-seeds/LLaMA-Factory-Doc.git
7+
[submodule "_repos/VeOmni"]
8+
path = _repos/VeOmni
9+
url = https://github.com/ByteDance-Seed/VeOmni.git
10+
[submodule "_repos/ms-swift"]
11+
path = _repos/ms-swift
12+
url = https://github.com/modelscope/ms-swift.git

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ BUILDDIR = _build
1111
# Format: "source_directory:target_directory"
1212
PROJECT_CONFIGS = \
1313
_repos/verl/docs/ascend_tutorial:sources/verl \
14-
_repos/VeOmni:sources/VeOmni
14+
_repos/VeOmni/docs:sources/VeOmni \
15+
_repos/LLaMA-Factory/docs:sources/LLaMA-Factory \
16+
_repos/ms-swift/docs:sources/ms-swift
1517

1618
# Put it first so that "make" without argument is like "make help".
1719
help:
@@ -29,6 +31,8 @@ help:
2931
@for config in $(PROJECT_CONFIGS); do \
3032
src=$$(echo $$config | cut -d: -f1); \
3133
dst=$$(echo $$config | cut -d: -f2); \
34+
# Removing existing index files to avoid conflicts \
35+
find $$src -name 'index.*' -delete 2>/dev/null || true; \
3236
echo "Copying $$src to $$dst"; \
3337
cp -r $$src/* $$dst/ 2>/dev/null || echo " Source directory does not exist or is empty: $$src"; \
3438
done

_repos/LLaMA-Factory

Submodule LLaMA-Factory added at 9e7cf34

_repos/VeOmni

Submodule VeOmni added at 3868ebb

_repos/ms-swift

Submodule ms-swift added at a8cc234

_static/images/LLaMA-Factory.png

35.6 KB
Loading

_static/images/VeOmni.png

188 KB
Loading

_static/images/llama-factory.png

-6.17 KB
Binary file not shown.

_static/images/swift.png

171 KB
Loading

conf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@
3030
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
3131
# ones.
3232
extensions = [
33-
'sphinx.ext.autodoc',
3433
'recommonmark',
34+
'sphinx.ext.autodoc',
3535
'sphinxext.remoteliteralinclude',
36-
'sphinx_copybutton'
36+
'sphinx_copybutton',
37+
'sphinx_markdown_tables'
3738
]
3839

3940
# 模板路径设置

0 commit comments

Comments
 (0)