GPT 파인 튜닝컬럼명을 자동완성 시키는데 AI를 활용해보자는 의견을 받았고,import openaiopenai.api_key = "" # 1. 파일 업로드file_response = openai.files.create( file=open("./sample_data/training.jsonl", "rb"), purpose="fine-tune")file_id = file_response.id# 2. 파인튜닝 작업 생성job = openai.fine_tuning.jobs.create( training_file=file_id, model="gpt-3.5-turbo" # 또는 사용 가능한 최신 모델명)print("파인튜닝 작업 ID:", job.id)print("파인튜닝 작업 ID:", ..