Skip to content

Commit a23f268

Browse files
committed
Removed unused parameter from generate conversations yml
1 parent 6803d60 commit a23f268

File tree

1 file changed

+1
-1
lines changed
  • backend/scripts/generate_conversation

1 file changed

+1
-1
lines changed

backend/scripts/generate_conversation/chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def process_csv(input_file=None, output_file=None, num_turns=5, num_rows=None):
188188

189189
# Save the results with the same encoding as input
190190
print(f"\nWriting results to {output_file}")
191-
df.to_csv(output_file, index=False, encoding="cp1252")
191+
df.to_csv(output_file, index=False, encoding="utf-8")
192192

193193
print(f"\nAll conversations generated and saved to {output_file}")
194194
return output_file

0 commit comments

Comments
 (0)