Skip to content

Instantly share code, notes, and snippets.

@nishio

nishio/a.md Secret

Created March 30, 2023 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nishio/f30a7ee0ecc1eeaddfceedae8d610dff to your computer and use it in GitHub Desktop.
Save nishio/f30a7ee0ecc1eeaddfceedae8d610dff to your computer and use it in GitHub Desktop.

You: SVGでチャットボットの絵を描いて

ChatGPT: チャットボットのイメージに基づいて、簡単なSVGコードを提供します。下記のコードをコピーして、HTMLファイルに貼り付けるか、オンラインのSVGエディターに入力してください。表示される画像は、チャットボットを象徴するロボットの顔を表しています。

<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">
  <circle cx="50" cy="50" r="45" fill="#F2F2F2" stroke="#000" stroke-width="3"/>
  <circle cx="35" cy="40" r="5" fill="#000"/>
  <circle cx="65" cy="40" r="5" fill="#000"/>
  <rect x="30" y="60" width="40" height="10" fill="#000" rx="3" ry="3"/>
  <rect x="20" y="30" width="15" height="3" fill="#000"/>
  <rect x="65" y="30" width="15" height="3" fill="#000"/>
</svg

You: 中高生のために無償で手伝いをするチャットボットにして

ChatGPT: 中高生向けの無料チャットボットを表現するために、SVG画像にテキスト要素を追加しました。学生のニーズに応えるロボットをイメージしています。以下のコードをコピーして、HTMLファイルに貼り付けるか、オンラインのSVGエディターに入力してください。

<svg xmlns="http://www.w3.org/2000/svg" width="200" height="150" viewBox="0 0 200 150">
  <circle cx="50" cy="50" r="45" fill="#F2F2F2" stroke="#000" stroke-width="3"/>
  <circle cx="35" cy="40" r="5" fill="#000"/>
  <circle cx="65" cy="40" r="5" fill="#000"/>
  <rect x="30" y="60" width="40" height="10" fill="#000" rx="3" ry="3"/>
  <rect x="20" y="30" width="15" height="3" fill="#000"/>
  <rect x="65" y="30" width="15"

You: continue

ChatGPT:

height="3" fill="#000"/> <text x="110" y="50" font-size="18" font-family="Arial, sans-serif" fill="#000">
無償で手伝う </text> <text x="110" y="75" font-size="18" font-family="Arial, sans-serif" fill="#000">
中高生向けチャットボット </text> </svg>

このSVGコードには、チャットボットの顔と、"無償で手伝う"および"中高生向けチャットボット"というテキストが含まれています。これにより、このチャットボットが中高生のために無償で手伝うことを示しています。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment