初始化项目,由ModelHub XC社区提供模型

Model: build-small-hackathon/Nemotron-nano-4b-escape-room
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-23 22:24:15 +08:00
commit d4b59a67e3
16 changed files with 10586 additions and 0 deletions

24
json.gbnf Normal file
View File

@@ -0,0 +1,24 @@
root ::= object
value ::= object | array | string | number | ("true" | "false" | "null") ws
object ::=
"{" ws (
string ":" ws value
("," ws string ":" ws value)*
)? "}" ws
array ::=
"[" ws (
value
("," ws value)*
)? "]" ws
string ::=
"\"" (
[^\\"\x7F\x00-\x1F] |
"\\" (["\\/bfnrt] | "u" [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F])
)* "\"" ws
number ::= ("-"? ([0-9] | [1-9] [0-9]*)) ("." [0-9]+)? (([eE] [-+]? [0-9]+))? ws
ws ::= ([ \t\n] ws)?