9 lines
294 B
Python
9 lines
294 B
Python
|
|
"""Bundled public-page extraction provider for isolated Hermes chat."""
|
||
|
|
|
||
|
|
from plugins.web.public_extract.provider import PublicExtractProvider
|
||
|
|
|
||
|
|
|
||
|
|
def register(ctx) -> None:
|
||
|
|
"""Register the credential-free extraction provider."""
|
||
|
|
ctx.register_web_search_provider(PublicExtractProvider())
|