chaixuhong 2 settimane fa
parent
commit
1cff1525c0
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      llmops/agents/data_stardard.py

+ 1 - 1
llmops/agents/data_stardard.py

@@ -227,7 +227,7 @@ JSON Array:
         csv_result = await self.parse_to_csv(file_path)
 
         if csv_result:
-            with open(full_path, "w", encoding="utf-8-sig") as f:
+            with open(full_path, "w", encoding="utf-8") as f:
                 f.write(csv_result)
             return full_path
         else: