-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 1.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fine Tuning Dataset Creator</title>
<script defer src="script.js"></script>
</head>
<body>
<form action="/" method="post">
<label><input type="radio" name="role_1" value="system">system</label>
<label><input type="radio" name="role_1" value="assistant">assistant</label>
<label><input type="radio" name="role_1" value="user" checked>user</label>
<label><textarea name="text_1" cols="50" rows="10"></textarea></label>
<br>
<label><input type="radio" name="role_2" value="system">system</label>
<label><input type="radio" name="role_2" value="assistant" checked>assistant</label>
<label><input type="radio" name="role_2" value="user">user</label>
<label><textarea name="text_2" cols="50" rows="10"></textarea></label>
<button type="button" onclick="saveData()">Input</button>
<button type="button" onclick="saveDataAsJSONL()">Save as JSONL</button>
</form>
</body>
</html>