Skip to content

Commit fbbf682

Browse files
feature: support qwen 2.5 omini
1 parent 97045b2 commit fbbf682

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1203
-519
lines changed

.gitmodules

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,34 @@
33
url = https://github.com/pybind/pybind11
44
[submodule "samples/genie/c++/External/cpp-httplib"]
55
path = samples/genie/c++/External/cpp-httplib
6-
url = https://github.com/yhirose/cpp-httplib
6+
url = https://github.com/yhirose/cpp-httplib.git
77
[submodule "samples/genie/c++/External/json"]
88
path = samples/genie/c++/External/json
9-
url = https://github.com/nlohmann/json
9+
url = https://github.com/nlohmann/json.git
1010
[submodule "samples/genie/c++/External/curl"]
1111
path = samples/genie/c++/External/curl
12-
url = https://github.com/curl/curl
12+
url = https://github.com/curl/curl.git
1313
[submodule "samples/genie/c++/External/llama.cpp"]
1414
path = samples/genie/c++/External/llama.cpp
15-
url = https://github.com/ggml-org/llama.cpp
15+
url = https://github.com/ggml-org/llama.cpp.git
1616
[submodule "samples/genie/c++/External/MNN"]
1717
path = samples/genie/c++/External/MNN
18-
url = https://github.com/alibaba/MNN
18+
url = https://github.com/alibaba/MNN.git
1919
[submodule "samples/genie/c++/External/cli11"]
2020
path = samples/genie/c++/External/cli11
2121
url = https://github.com/CLIUtils/CLI11
22+
[submodule "samples/genie/c++/External/libsamplerate"]
23+
path = samples/genie/c++/External/libsamplerate
24+
url = https://github.com/libsndfile/libsamplerate.git
25+
[submodule "samples/genie/c++/External/dr_libs"]
26+
path = samples/genie/c++/External/dr_libs
27+
url = https://github.com/mackron/dr_libs.git
28+
[submodule "samples/genie/c++/External/LibrosaCpp"]
29+
path = samples/genie/c++/External/LibrosaCpp
30+
url = https://github.com/ewan-xu/LibrosaCpp.git
31+
[submodule "samples/genie/c++/External/CLI11"]
32+
path = samples/genie/c++/External/CLI11
33+
url = https://github.com/CLIUtils/CLI11.git
34+
[submodule "samples/genie/c++/External/stb"]
35+
path = samples/genie/c++/External/stb
36+
url = https://github.com/nothings/stb.git
Submodule LibrosaCpp added at 8d0bf62

samples/genie/c++/External/MNN

Submodule MNN updated 133 files

samples/genie/c++/External/curl

Submodule curl updated 4859 files

samples/genie/c++/External/dr_libs

Submodule dr_libs added at fa931f3

samples/genie/c++/External/json

Submodule json updated 1536 files
Submodule libsamplerate added at 2ccde95

samples/genie/c++/External/stb

Submodule stb added at 904aa67
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
| Name | link | tag/branch |
2+
|---------------|:----------------------------------------------------|:------------|
3+
| curl | https://github.com/curl/curl/tree/curl-7_88_0 | curl-7_88_0 |
4+
| json | https://github.com/nlohmann/json/tree/v3.10.0 | v3.10.0 |
5+
| cli11 | https://github.com/CLIUtils/CLI11/tree/v2.3.0 | v2.3.0 |
6+
| cpp-httplib | https://github.com/yhirose/cpp-httplib/tree/v0.28.0 | v0.28.0 |
7+
| llama | https://github.com/ggml-org/llama.cpp/tree/b7356 | b7356 |
8+
| mnn | https://github.com/alibaba/MNN/tree/3.3.0 | 3.3.0 |
9+
| stb | https://github.com/nothings/stb | master |
10+
| libsamplerate | https://github.com/libsndfile/libsamplerate.git | master |
11+
| dr_libs | https://github.com/mackron/dr_libs.git | master |
12+
| LibrosaCpp | https://github.com/ewan-xu/LibrosaCpp.git | main |

0 commit comments

Comments
 (0)