mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-06 19:38:36 +08:00
6 lines
169 B
Python
6 lines
169 B
Python
from . import generator
|
|
|
|
__all__ = [name for name in dir(generator) if not name.startswith("_")]
|
|
|
|
globals().update({name: getattr(generator, name) for name in __all__})
|