* initially add text_generation_webui support * add env requirements install * add necessary dependencies * update for starting webui * update shared and noted to place models * update heading of part3 * meet comments * add copyright license * remove extensions * convert tutorial to windows side * add warm-up to optimize performance
14 lines
375 B
Text
14 lines
375 B
Text
root ::= object
|
|
|
|
object ::= "{" ws ( string ":" ws value ("," ws string ":" ws value)* )? "}" ws
|
|
|
|
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)?
|