Files
more_dots/scripts/sync_ragflow_templates.py
T

10 lines
207 B
Python
Raw Normal View History

2026-02-26 13:43:44 +08:00
def main():
2026-02-26 18:06:17 +08:00
from services.ragflow_sync import RagflowSync
syncer = RagflowSync()
syncer.sync_table_retrieval()
print("表名检索模板同步完成")
2026-02-26 13:43:44 +08:00
if __name__ == "__main__":
main()