logo of 国会議事録検索 for GPTs on the GPT Store

国会議事録検索 for GPTs on the GPT Store

By 株式会社自動処理Show 2+ GPTs by 株式会社自動処理
Use 国会議事録検索 for GPTs on ChatGPT Use 国会議事録検索 for GPTs on 302.AI

GPT Description

国会議事録をニュースやテキスト情報から検索・調査できます。

Welcome Message

Hello

GPT Prompt Starters

  • JRなど旅客鉄道事業者向けのダイナミック・プライシングの導入に対する国会での議論を10件検索して、論点をまとめてください。
  • 今年の5月以降の国会議論の中で、賃上げと減税について国会で議論されているか10件、調べて賛成、反対の論点をまとめてください。
  • I would like to research the parliamentary debate on support for Ukraine and summarize it in 500 words or less.
  • NHK受信料問題に関する不満をを元に国会議事録を10件調べ、全ての議事を全て統合して500文字程度で要約して、文字数制限なしに詳しく解説してください。また最後に出典を示し、発言している議員を全てリストアップして、その議員の立場を簡単にまとめてください。

GPT Action OpenAPI Spec

{
  "openapi": "3.0.2",
  "info": {
    "title": "Japanese Diet Proceedings Search API",
    "version": "0.1.0",
    "description": "This is a plugin for searching parliamentary proceedings operated by Automatic Processing Inc."
  },
  "servers": [
    {
      "url": "https://the-diet-record.automation.jp",
      "description": "production environment"
    }
  ],
  "paths": {
    "/query": {
      "post": {
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/QueryRequest"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/QueryResponse"
                }
              }
            },
            "description": "Successful Response"
          },
          "422": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            },
            "description": "Validation Error"
          }
        },
        "operationId": "query_main_query_post",
        "summary": "Query Main"
      }
    }
  },
  "components": {
    "schemas": {
      "DocumentChunkMetadata": {
        "title": "DocumentChunkMetadata",
        "type": "object",
        "properties": {
          "source": {
            "$ref": "#/components/schemas/Source"
          },
          "source_id": {
            "title": "Source Id",
            "type": "string"
          },
          "url": {
            "title": "Url",
            "type": "string"
          },
          "creation_date": {
            "title": "Creation Date",
            "type": "string"
          },
          "the_Diet_member": {
            "title": "The Diet Member",
            "type": "string"
          },
          "id": {
            "title": "Id",
            "type": "string"
          }
        }
      },
      "DocumentChunkWithScore": {
        "title": "DocumentChunkWithScore",
        "required": [
          "text",
          "metadata",
          "score"
        ],
        "type": "object",
        "properties": {
          "id": {
            "title": "Id",
            "type": "string"
          },
          "text": {
            "title": "Text",
            "type": "string"
          },
          "metadata": {
            "$ref": "#/components/schemas/DocumentChunkMetadata"
          },
          "score": {
            "title": "Score",
            "type": "number"
          }
        }
      },
      "HTTPValidationError": {
        "title": "HTTPValidationError",
        "type": "object",
        "properties": {
          "detail": {
            "title": "Detail",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ValidationError"
            }
          }
        }
      },
      "Query": {
        "title": "Query",
        "required": [
          "topic"
        ],
        "type": "object",
        "properties": {
          "topic": {
            "title": "Topic",
            "type": "string"
          },
          "top_k": {
            "title": "Top K",
            "default": 5,
            "type": "integer"
          },
          "start_date": {
            "title": "Start Date",
            "type": "string"
          },
          "end_date": {
            "title": "End Date",
            "type": "string"
          },
          "the_Diet_member": {
            "title": "The Diet Member",
            "type": "string"
          }
        }
      },
      "QueryRequest": {
        "title": "QueryRequest",
        "required": [
          "topic"
        ],
        "type": "object",
        "properties": {
          "topic": {
            "title": "Topic",
            "description": "Sentence to be searched",
            "type": "string"
          },
          "top_k": {
            "title": "Top K",
            "description": "Number of returns",
            "default": 5,
            "type": "integer"
          },
          "start_date": {
            "title": "Start Date",
            "type": "string"
          },
          "end_date": {
            "title": "End Date",
            "type": "string"
          },
          "the_Diet_member": {
            "title": "The Diet Member",
            "description": "Diet member",
            "type": "string"
          }
        },
        "example": {
          "topic": "最近、私たちの生活費は急激に上昇しています。食品、交通費、光熱費など、日々の生活に必要なもの全てが値上がりしているのです。これは私たちの生活を大きく圧迫し、生活の質を低下させています。特に低所得者や高齢者にとっては、生活が困難になる可能性があります。この問題は、私たち一人一人だけでなく、国全体が直面している課題です。\r\nこのような状況を受けて、国会でも生活費の高騰についての議論が活発に行われています。政府はこの問題にどのように対応するのか、また、私たちの生活を守るために何をするべきなのか、その方策が模索されています。私たちは、国会の議論を注視し、適切な対策が講じられることを期待しています。",
          "top_k": 5,
          "start_date": "2021-04-30",
          "end_date": "2023-04-30",
          "the_Diet_member": "岸田文雄"
        }
      },
      "QueryResponse": {
        "title": "QueryResponse",
        "required": [
          "results"
        ],
        "type": "object",
        "properties": {
          "results": {
            "title": "Results",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/QueryResult"
            }
          }
        }
      },
      "QueryResult": {
        "title": "QueryResult",
        "required": [
          "results"
        ],
        "type": "object",
        "properties": {
          "query": {
            "$ref": "#/components/schemas/Query",
            "description": "Sentence retrieved"
          },
          "results": {
            "title": "Results",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocumentChunkWithScore"
            }
          }
        }
      },
      "Source": {
        "title": "Source",
        "description": "An enumeration.",
        "enum": [
          "outside"
        ],
        "type": "string"
      },
      "ValidationError": {
        "title": "ValidationError",
        "required": [
          "loc",
          "msg",
          "type"
        ],
        "type": "object",
        "properties": {
          "loc": {
            "title": "Location",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "type": "string"
                },
                {
                  "type": "integer"
                }
              ]
            }
          },
          "msg": {
            "title": "Message",
            "type": "string"
          },
          "type": {
            "title": "Error Type",
            "type": "string"
          }
        }
      }
    }
  }
}
Use 国会議事録検索 for GPTs on 302.AI

国会議事録検索 for GPTs FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "国会議事録検索 for GPTs", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.

Best Alternative GPTs to 国会議事録検索 for GPTs on GPTs Store

国会議事録検索

ニュースや文章から国会議事録を調査してまとめることができます。

400+

周爺爺活字典

(測試中)對議事規則、國會改革時事等相關資料定期更新,可以做為了解立法院、此次國會改革事件之根據。由國民黨青年團、立法委員陳菁徽辦公室、立法委員葛如鈞辦公室共同開發。本服務之生成式 AI 核心為 OpenAI / ChatGPT 技術提供,資訊僅供參考,請謹慎求證。

300+

(공식)AI염태영 수원(무) 국회의원 당선인

자세하고 정확하게 제공되는 염태영의 사실

80+

Legislator Insight

Expert in U.S. legislation analysis and interpretation.

80+

Personal CMSgt Assistant

Your dedicated USAF Chief Master Sergeant aide, specializing in everything US Air Force.

40+

校园智者

Chinese university student persona, articulate and personable.

30+

March Spending Bill

Trained on the H.R. 2882 ammend

20+

22대 국회의원 선거 지역구 후보자 공개정보 분석

총선에 출마한 후보자들이 공개한 정보를 취합하여 검색할 수 있도록 데이터를 가공해 학습시킨 챗봇입니다. 선거구, 소속정당, 성명, 성별, 연령, 재산, 병역, 체납액, 전과, 입후보 횟수의 데이터만 입력되어있습니다. 이와 관계된 어떤 질문이든 하시면 됩니다. * 3월 22일 기준으로 주요정당의 비례대표 명단이 선관위 홈페이지에 공개되지 않은 관계로 지역구 후보들의 데이터만 있습니다.* ### 선거법상 후보자들의 개인정보는 4월 10일까지만 제공되는 관계로 선거가 종료된 4월 11일에는 폐쇄될 예정입니다. ###

20+

Legal Eagle - Local Council and Parish Council UK

I interpret legal texts and cite sources for verification.

20+

CAON - Legal Analysis Expert

Expert in Legal Analysis and Advice

10+

Global Shipmate

Cost-efficient, friendly shipping advisor.

10+

Climate Expert COP

国連気候変動枠組条約締約国会議(COP)のCOP1からCOP28までの決議結果について解説する

9+

BBA Türkiye Parlamento Güncel Haberleri

Türkiye Parlamentosu haberleri ve bilgileri sağlar

9+

USA Agenda

A guide specializing in information on events taking place in USA.

6+

AI国会議員

5+

Diet Digest

Summarizes daily Japanese Diet proceedings into digestible summaries.

3+

Parliamentary Guide Malaysia

Expert on Malaysian Parliament's Dewan Rakyat rules

3+

国会議事録検索 for GPTs

国会議事録をニュースやテキスト情報から検索・調査できます。

国会議事録検索 for GPTs

国会議事録検索 for GPTs

박태준 국회의원 - 더불어민주당(가상)

소중한 하루, 소중한 당신의 삶. 더불어민주당이 언제나 국민 곁에서, 여러분의 삶을 위해 함께 걷겠습니다. 당신의 내일을 위해 오늘도 변함없이 노력하겠습니다.