mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
15 lines
372 B
Plaintext
15 lines
372 B
Plaintext
root ::= object
|
|
|
|
object ::= "{" ws ( string ":" ws value ("," ws string ":" ws value)* )? "}"
|
|
|
|
value ::= object | array | string | number | ("true" | "false" | "null") ws
|
|
|
|
array ::= "[" ws ( value ("," ws value)* )? "]" ws
|
|
|
|
string ::= "\"" ( [a-zA-Z0-9] )* "\"" ws
|
|
|
|
number ::= ("-"? ([0-9] | [1-9] [0-9]*)) ("." [0-9]+)? ([eE] [-+]? [0-9]+)? ws
|
|
|
|
|
|
ws ::= ([ \t\n] ws)?
|