Update select_question.py
Browse files- select_question.py +77 -0
select_question.py
CHANGED
@@ -0,0 +1,77 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from chatgpt_api import get_chatgpt_response
|
2 |
+
import pandas as pd
|
3 |
+
import re
|
4 |
+
|
5 |
+
|
6 |
+
# プロンプトを作成
|
7 |
+
def make_prompt(df):
|
8 |
+
rows = []
|
9 |
+
for index, row in df.iterrows():
|
10 |
+
theme_str = str(row["テーマ"])
|
11 |
+
if theme_str.lower() == 'nan':
|
12 |
+
continue
|
13 |
+
themes_list = theme_str.split(',')
|
14 |
+
|
15 |
+
for theme in themes_list:
|
16 |
+
new_prompt = "#条件\n"+ "・以下の「#サンプル」の形式で、"+row['レベル']+"レベルのリスニング問題を生成\n"+"・[問題1]から[問題"+str(row["問題数"])+"]まで必ず"+str(row["問題数"])+"問作成\n"+ "・「##リスニングスクリプト」から「##選択肢」まですべて出力\n"+ "・「##リスニングスクリプト」は"+row['スクリプトパターン']+"\n"+"・問題の難易度、word数は「##リスニングスクリプト」と同等レベル\n"+"・Questionがある場合は、「##リスニングスクリプト」の表現を真似しすぎず、what,why,how,when,whereなど、多様な角度から問う\n"+"・各問題は、[問題1][問題2]という形式で始める\n"+"・ただし、スクリプトの内容は、"+theme+"に関するスクリプト\n"+"・[問題1]から[問題"+str(row["問題数"])+"]までの誤答選択肢はすべて異なる内容・異なるパターン \n \n"+"#サンプル\n"+row["サンプル"]
|
17 |
+
rows.append({
|
18 |
+
"ステージ":row["ステージ"],
|
19 |
+
"レベル":row["レベル"],
|
20 |
+
"選択肢読み上げ有無":row["選択肢読み上げ有無"],
|
21 |
+
"複製パターン":row["複製パターン"],
|
22 |
+
"プロンプト":new_prompt
|
23 |
+
})
|
24 |
+
result_df = pd.DataFrame(rows)
|
25 |
+
return result_df
|
26 |
+
|
27 |
+
# 問題の分割と展開
|
28 |
+
def expand_problems(df):
|
29 |
+
temp_data = []
|
30 |
+
# テキスト全体を処理
|
31 |
+
for index, row in df.iterrows():
|
32 |
+
# 正規表現を用いて各問題を分割
|
33 |
+
problems = re.findall(r'\[(問題\d+)\](.*?)(?=\[問題\d+\]|$)', row['問題1'], re.DOTALL)
|
34 |
+
|
35 |
+
# 各問題のIDとともに新たな行を追加
|
36 |
+
for num, text in problems:
|
37 |
+
temp_data.append({
|
38 |
+
"ステージ": row["ステージ"],
|
39 |
+
"レベル": row["レベル"],
|
40 |
+
"選択肢読み上げ有無": row["選択肢読み上げ有無"],
|
41 |
+
"複製パターン": row["複製パターン"],
|
42 |
+
"問題1": text.strip()
|
43 |
+
})
|
44 |
+
|
45 |
+
# 一時リストから新しいDataFrameを作成
|
46 |
+
return pd.DataFrame(temp_data)
|
47 |
+
|
48 |
+
def create_choice_question(csv_file):
|
49 |
+
# CSVファイルを読み込む
|
50 |
+
df = pd.read_csv(csv_file.name)
|
51 |
+
|
52 |
+
# プロンプトを作成する
|
53 |
+
df_prompt = make_prompt(df)
|
54 |
+
|
55 |
+
# 問題を生成する
|
56 |
+
## 問題1を生成する
|
57 |
+
df_prompt["問題1"] = df_prompt["プロンプト"].apply(get_chatgpt_response)
|
58 |
+
|
59 |
+
## 問題1を展開する
|
60 |
+
result_df = expand_problems(df_prompt)
|
61 |
+
|
62 |
+
## 問題2を生成する
|
63 |
+
result_df["プロンプト2"] = result_df["複製パターン"]+"\n"+result_df["問題1"]
|
64 |
+
result_df["問題2"] = result_df["プロンプト2"].apply(get_chatgpt_response)
|
65 |
+
|
66 |
+
# 翻訳する
|
67 |
+
|
68 |
+
# csvを書き出す
|
69 |
+
with tempfile.NamedTemporaryFile(delete=False, suffix='.csv') as tmp:
|
70 |
+
# cp932で保存、エラーは無視(置換しても良い)
|
71 |
+
result_df.to_csv(tmp.name, index=False, encoding='cp932', errors='ignore')
|
72 |
+
output_path = tmp.name
|
73 |
+
|
74 |
+
# ファイル名を変更
|
75 |
+
new_path = os.path.join(os.path.dirname(output_path), "output.csv")
|
76 |
+
os.rename(output_path, new_path)
|
77 |
+
return new_path
|