0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MarkdownAIでいろんなAIに一括回答させてみた

Last updated at Posted at 2024-11-20

一度の質問で複数回答

タイトルの通り、一度の質問で複数のAI(Gemini, Claude, GPT4, GPT4o)が同じ課題に対してそれぞれ回答をしてくれるものを作ってみました。
またそれぞれの回答をまとめた内容も出力されるようにしています。
※時間はやっぱりそこそこかかります…

image.png

お題を入力して回答ボタンを押すだけです。

image.png

プログレスバーのような何かが出て、

image.png

image.png

結果とまとめが表示されます。

MarkdownAIについて

https://mdown.ai/
サーバーや技術的な知識がなくても AI ツールや Web サイトを作成できるものです。

MarkdownAIについての感想

私が小学生だった頃、ホームページビルダーというツールを使ってホームぺージを作ったことを思い出しました。
ネットと生成AIに触れるような教育の一環として、これを使って何かやってみるというのは面白いかもしれません。
複数AIを絡めて…という所のアイデアがディベートとか以外だとポンコツな私には出てこず…
発想力のある方だと面白いものができるのかもですね。
AIの登録なんかはすぐに出来てとても使いやすかったと思います。

気になった点

私の使い方が悪いんですかね…
ナレッジがうまく認識されませんでした。作ったものでは結局使ってませんが。

最後にコードを張っておきます。
(適当に作ったので煩雑なのはご容赦を)

Code
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>AIMixAnswer</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 20px;
      background-color: #f9f9f9;
      color: #333;
    }
    h1 {
      text-align: center;
      color: #444;
    }
    h2 {
      color: #555;
    }
    #app-container {
      max-width: 1200px; /* 横幅を広げる */
      margin: 0 auto;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .input-group {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    input[type="text"] {
      flex: 1;
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    button {
      margin-left: 10px;
      padding: 10px 20px;
      font-size: 16px;
      color: #fff;
      background-color: #007bff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    button:disabled {
      background-color: #ccc;
      cursor: not-allowed;
    }
    button:hover:not(:disabled) {
      background-color: #0056b3;
    }
    .progress-bar-container {
      display: none;
      width: 100%;
      height: 20px;
      background: #e0e0e0;
      border-radius: 10px;
      margin-top: 10px;
      overflow: hidden;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    .progress-bar {
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, #4caf50, #81c784);
      transition: width 0.5s ease-in-out;
    }
    .output-group {
      margin-top: 20px;
    }
    .answers-container {
      display: flex;
      justify-content: space-between;
      gap: 20px; /* ボックス間の間隔 */
    }
    .answer-box {
      flex: 1;
      padding: 10px;
      background: #f1f1f1;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      white-space: pre-wrap;
    }
    .answer-box h3 {
      margin: 0 0 10px 0;
      font-size: 18px;
      color: #555;
    }
  </style>
</head>
<body>
  <div id="app-container">
    <h1>AIMixAnswer</h1>
    <h2>GPT・Gemini・Claudeが同じお題に回答します</h2>
    <div class="input-group">
      <input type="text" id="question" placeholder="質問を入力してください">
      <button type="button" id="start">回答</button>
    </div>
    <div class="progress-bar-container" id="progress-container">
      <div class="progress-bar" id="progress-bar"><div id="result"></div></div>
    </div>
    <div class="output-group">
      <h2>それぞれの回答</h2>
      <div class="answers-container">
        <div class="answer-box" id="gpt4-box">
          <h3>GPT4</h3>
          <div id="gpt4-answer"></div>
        </div>
        <div class="answer-box" id="claude-box">
          <h3>Claude</h3>
          <div id="claude-answer"></div>
        </div>
        <div class="answer-box" id="gemini-box">
          <h3>Gemini</h3>
          <div id="gemini-answer"></div>
        </div>
      </div>
      <h2>まとめ</h2>
      <div id="conclusion"></div>
    </div>
  </div>

  <script>
    (() => {
      const button = document.getElementById('start');
      const questionInput = document.getElementById('question');
      const resultDiv = document.getElementById('result');
      const gpt4AnswerDiv = document.getElementById('gpt4-answer');
      const claudeAnswerDiv = document.getElementById('claude-answer');
      const geminiAnswerDiv = document.getElementById('gemini-answer');
      const conclusionDiv = document.getElementById('conclusion');
      const progressContainer = document.getElementById('progress-container');
      const progressBar = document.getElementById('progress-bar');

      const updateProgressBar = (progress) => {
        progressBar.style.width = `${progress}%`;
      };

      button.addEventListener('click', async () => {
        button.disabled = true;
        progressContainer.style.display = 'block';
        updateProgressBar(0);

        const question = questionInput.value.trim();
        if (!question) {
          alert("質問を入力してください!");
          button.disabled = false;
          progressContainer.style.display = 'none';
          return;
        }

        const apiKeys = {
          gpt4: 'xxxxxxxxxxxxxxxxx',
          claude: 'xxxxxxxxxxxxxxxxx',
          gemini: 'xxxxxxxxxxxxxxxxx',
          gpt4o: 'xxxxxxxxxxxxxxxxx',
        };

        resultDiv.innerText = "回答中...";
        gpt4AnswerDiv.innerText = "";
        claudeAnswerDiv.innerText = "";
        geminiAnswerDiv.innerText = "";
        conclusionDiv.innerText = "";

        const serverAi = new ServerAI();

        try {
          updateProgressBar(25);
          const [answer1, answer2, answer3] = await Promise.all([
            serverAi.getAnswerText(apiKeys.gpt4, '', `「${question}」の回答を出してください。`),
            serverAi.getAnswerText(apiKeys.claude, '', `「${question}」の回答を出してください。`),
            serverAi.getAnswerText(apiKeys.gemini, '', `「${question}」の回答を出してください。`),
          ]);

          updateProgressBar(75);
          resultDiv.innerText = "回答が完了しました!";
          gpt4AnswerDiv.innerText = answer1;
          claudeAnswerDiv.innerText = answer2;
          geminiAnswerDiv.innerText = answer3;

          const conclusion = await serverAi.getAnswerText(apiKeys.gpt4o, '', `「${answer1}」、「${answer2}」、「${answer3}」についてまとめてください。`);
          updateProgressBar(100);

          conclusionDiv.innerText = `${conclusion}`;
        } catch (error) {
          console.error(error);
          alert("エラーが発生しました。詳細はコンソールを確認してください。");
        } finally {
          button.disabled = false;
          setTimeout(() => {
            progressContainer.style.display = 'none';
            updateProgressBar(0);
          }, 1000);
        }
      });
    })();
  </script>
</body>
</html>

すごく長い文章とかプログラムとか
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?