Files
more_dots/scripts/sync_ragflow_templates.py
T
2026-02-26 18:06:17 +08:00

10 lines
207 B
Python

def main():
from services.ragflow_sync import RagflowSync
syncer = RagflowSync()
syncer.sync_table_retrieval()
print("表名检索模板同步完成")
if __name__ == "__main__":
main()