This commit is contained in:
2026-02-26 18:06:17 +08:00
parent 68200cdfe6
commit ad0082d811
33 changed files with 356 additions and 249 deletions
+11
View File
@@ -0,0 +1,11 @@
from services.ragflow_sync import RagflowSync
def main():
syncer = RagflowSync()
syncer.sync_sql_gen_prompts()
print("SQL 生成提示词同步完成")
if __name__ == "__main__":
main()