Initial commit with two chat formats and main function.

This commit is contained in:
damien 2025-04-02 17:27:14 +02:00
commit a472b62e19
4 changed files with 23 additions and 0 deletions

7
main.py Normal file
View file

@ -0,0 +1,7 @@
import csv
def main():
with open('conversation.csv') as csvfile:
...
main()