MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / marker

Method marker

common/peg-parser.cpp:1443–1447  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1441}
1442
1443common_peg_parser common_peg_parser_builder::marker() {
1444 auto sharp_bracket_parser = literal("<") + until(">") + literal(">");
1445 auto square_bracket_parser = literal("[") + until("]") + literal("]");
1446 return choice({ sharp_bracket_parser, square_bracket_parser });
1447}
1448
1449common_peg_parser common_peg_parser_builder::json_member(const std::string & key, const common_peg_parser & p) {
1450 auto ws = space();

Calls

no outgoing calls

Tested by 1

test_basicFunction · 0.64