MCPcopy
hub / github.com/HKUDS/RAG-Anything / get_supported_parsers

Function get_supported_parsers

raganything/parser.py:2488–2490  ·  view source on GitHub ↗

Return all supported parser names including custom registered parsers.

()

Source from the content-addressed store, hash-verified

2486
2487
2488def get_supported_parsers() -> tuple:
2489 """Return all supported parser names including custom registered parsers."""
2490 return SUPPORTED_PARSERS + tuple(_CUSTOM_PARSERS.keys())
2491
2492
2493def get_parser(parser_type: str) -> Parser:

Callers 3

test_builtin_onlyMethod · 0.90
test_includes_customMethod · 0.90
get_parserFunction · 0.85

Calls 1

keysMethod · 0.80

Tested by 2

test_builtin_onlyMethod · 0.72
test_includes_customMethod · 0.72