first commit

This commit is contained in:
陈赣
2026-06-03 12:43:14 +08:00
commit ba76cfae28
608 changed files with 120791 additions and 0 deletions

15
third_party/nlohmann/README.md vendored Normal file
View File

@@ -0,0 +1,15 @@
a header-only json library from github: https://github.com/nlohmann/json, easy to use like working in Python.
**NOTE**
used for parse/dump json payload when interact with REST API from mLLM service in VideoPipe.
```
compile test:
g++ json_test.cpp -o json_test -O2
and run:
./json_test
```