mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
14 lines
167 B
Plaintext
14 lines
167 B
Plaintext
|
root ::= "[" items "]" EOF
|
||
|
|
||
|
items ::= item ("," ws* item)*
|
||
|
|
||
|
item ::= string
|
||
|
|
||
|
string ::=
|
||
|
"\"" word (ws+ word)* "\"" ws*
|
||
|
|
||
|
word ::= [a-zA-Z]+
|
||
|
|
||
|
ws ::= " "
|
||
|
|
||
|
EOF ::= "\n"
|