ChatGPTにJSON形式「だけ」返信してほしい

動機

ChatGPT APIを使って、プログラムをしている。その前段階として、ブラウザのChatGPTで返信のテストをしている。
プログラムで使用するので、厳格にJSON形式でデータを出力してほしい。そのためのプロンクトを探している。

結果

以下のような書き方にすれば、ちゃんとJSON形式で返してくれている。
事前にWebChatGTPで検索して、その検索結果のタイトルとURLでまとめるようにしている。

Please summarize the above URLs in JSON format

Response Structure : Do not include any explanations, only provide a  RFC8259 compliant JSON response  following this format without deviation.
    {
       "urls": [
       "title":"title", "url":"url"
       ]
}

マークダウン形式

マークダウン形式でもテストしてみた。使えそう。

Please summarize the above URLs in markdown format

Response Structure : Do not include any explanations, only provide a markdown response  following this format without deviation.
- [title](url)

まとめ

実際プログラムを使用すると別の回答が返ってくるかもしれないが、ひとまずメモ。

参考