HimitsudoguSearch / nobert_app.py
Mya-Mya
Squashed commit of the following:
9f1a6f8
raw
history blame
No virus
287 Bytes
from ambiguous_search_backends import DummyAmbiguousSearchBackend
from classic_search_backends import ImplClassicSearchBackend
import frontend
frontend.launch_frontend(
ambiguous_search_backend=DummyAmbiguousSearchBackend(),
classic_search_backend=ImplClassicSearchBackend(),
)