File size: 2,212 Bytes
1a34be3
 
 
 
 
 
e6c5000
1a34be3
 
 
 
 
 
 
dd60d3f
 
1a34be3
8b37e01
589d073
8b37e01
1a34be3
 
 
 
 
e6c5000
1a34be3
 
 
 
 
 
 
 
 
 
 
dd60d3f
1a34be3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dd60d3f
1a34be3
 
 
 
e6c5000
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
async function getTranscription() {
  try {
    const response = await fetch("/transcription");
    if (!response.ok) {
      throw new Error("HTTP error! status: ${response.status}");
    }
    const data = await response.json();
    const results = data.response;
  } catch (error) {
    console.error("Failed to fetch transcription", error);
  }
}

async function getAnalysis() {
  const loader = document.getElementById("loader");
  loader.style.display = "block";
  try {
    await getTranscription();

    const response = await fetch("/analyze");
    if (!response.ok) {
      throw new Error(`HTTP error! status: ${response.status}`);
    }

    const data = await response.json();
    console.log("分析データ取得:", data); // ←構造確認用
    const results = data.results;
    const analysis = results.deepseek_analysis;

    // 変数に格納
    const conversationLevel = analysis.conversationLevel;
    const harassmentPresent = analysis.harassmentPresent;
    const harassmentType = analysis.harassmentType;
    const repetition = analysis.repetition;
    const pleasantConversation = analysis.pleasantConversation;
    const blameOrHarassment = analysis.blameOrHarassment;

    loader.style.display = "none";
    // DOMに表示
    document.getElementById(
      "level"
    ).innerText = `会話レベル: ${conversationLevel}`;
    document.getElementById(
      "Harassment_bool"
    ).innerText = `ハラスメントの有無: ${harassmentPresent}`;
    document.getElementById(
      "Harassment_type"
    ).innerText = `ハラスメントの種類: ${harassmentType}`;
    document.getElementById(
      "Harassment_loop"
    ).innerText = `繰り返しの程度: ${repetition}`;
    document.getElementById(
      "Harassment_comfort"
    ).innerText = `会話の心地よさ: ${pleasantConversation}`;
    document.getElementById(
      "Harassment_volume"
    ).innerText = `非難またはハラスメントの程度: ${blameOrHarassment}`;
  } catch (error) {
    loader.style.display = "none";
    console.error("Failed to fetch analysis data:", error);
  }
}

window.onload = () => {
  getAnalysis();
};