chaixuhong vor 2 Wochen
Ursprung
Commit
1cff1525c0
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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: