mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 21:38:09 +00:00
6 lines
173 B
Python
6 lines
173 B
Python
|
|
from . import prompts
|
||
|
|
|
||
|
|
__all__ = [name for name in dir(prompts)
|
||
|
|
if not name.startswith('_')]
|
||
|
|
|
||
|
|
globals().update({name: getattr(prompts, name) for name in __all__})
|