Use MD GPT on ChatGPT Use MD GPT on 302.AI

GPT Description

MDGPT (Medical GPT) is a cutting-edge AI health platform, offering accurate, up-to-date medical information. MDGPT ensures reliable health guidance, supplementing professional advice in a user-friendly format. It's an essential resource for instant, trustworthy medical knowledge.

GPT Prompt Starters

  • How To Prepare For Cold And Flu Season
  • Foods That May Help With Muscle Cramps
  • The Worst Foods for Your Brain
  • Living With HIV: Stress and Side Effects

GPT Action OpenAPI Spec

{
  "openapi": "3.0.3",
  "info": {
    "title": "SciSpace ResearchGPT",
    "version": "1.0.0",
    "description": "This is SciSpace ResearchGPT Project which has end points to get factual scientific information for various use cases."
  },
  "servers": [
    {
      "url": "https://researchgpt.typeset.io/"
    }
  ],
  "paths": {
    "/api/v1/paper/": {
      "get": {
        "operationId": "v1_paper_list",
        "description": "API to get search results for user query. Use this function when user wants to search papers or get answer to a question.",
        "parameters": [
          {
            "name": "search",
            "required": true,
            "in": "query",
            "description": "A search term.",
            "schema": {
              "type": "string"
            }
          }
        ],
        "tags": [
          "v1"
        ],
        "security": [
          {
            "tokenAuth": []
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LitReviewResponse"
                  }
                }
              }
            },
            "description": "List of all papers that can answer the asked question."
          }
        }
      }
    },
    "/api/v1/paper/{id}/": {
      "get": {
        "operationId": "v1_paper_retrieve",
        "description": "Use this get answers for a paper specific query",
        "parameters": [
          {
            "in": "path",
            "name": "id",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "in": "query",
            "name": "question",
            "schema": {
              "type": "string",
              "minLength": 1
            },
            "required": true
          }
        ],
        "tags": [
          "v1"
        ],
        "security": [
          {
            "tokenAuth": []
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PaperInfoResponse"
                }
              }
            },
            "description": ""
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Author": {
        "type": "object",
        "properties": {
          "display_name": {
            "type": "string"
          },
          "id": {
            "type": "integer"
          },
          "slug": {
            "type": "string"
          },
          "unique_id": {
            "type": "string"
          },
          "full_slug": {
            "type": "string"
          }
        },
        "required": [
          "display_name",
          "full_slug",
          "id",
          "slug",
          "unique_id"
        ]
      },
      "Journal": {
        "type": "object",
        "properties": {
          "display_name": {
            "type": "string"
          },
          "official_page": {
            "type": "string",
            "format": "uri"
          },
          "issn": {
            "type": "string"
          },
          "alias": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "id": {
            "type": "integer"
          },
          "slug": {
            "type": "string"
          },
          "unique_id": {
            "type": "string"
          },
          "full_slug": {
            "type": "string"
          }
        },
        "required": [
          "alias",
          "display_name",
          "full_slug",
          "id",
          "issn",
          "official_page",
          "slug",
          "unique_id"
        ]
      },
      "LitReviewResponse": {
        "type": "object",
        "properties": {
          "fssConfig": {
            "type": "object",
            "additionalProperties": {}
          },
          "total": {
            "type": "integer"
          },
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Paper"
            }
          }
        },
        "required": [
          "data",
          "fssConfig",
          "total"
        ]
      },
      "Paper": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "title": {
            "type": "string"
          },
          "is_archived": {
            "type": "boolean"
          },
          "full_slug": {
            "type": "string"
          },
          "journal": {
            "$ref": "#/components/schemas/Journal"
          },
          "conference_series": {
            "type": "string",
            "readOnly": true
          },
          "date": {
            "type": "string",
            "format": "date-time"
          },
          "is_oa": {
            "type": "boolean"
          },
          "publication_type": {
            "type": "string"
          },
          "doi": {
            "type": "string"
          },
          "authors": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Author"
            }
          },
          "affiliations": {
            "type": "string",
            "readOnly": true
          },
          "fulltext_url": {
            "type": "string",
            "format": "uri"
          },
          "fulltext_url_no_follow": {
            "type": "boolean"
          },
          "paper_urls": {
            "type": "string",
            "readOnly": true
          },
          "metrics": {
            "type": "string",
            "readOnly": true
          },
          "is_bookmarked": {
            "type": "boolean"
          }
        },
        "required": [
          "affiliations",
          "authors",
          "conference_series",
          "date",
          "doi",
          "full_slug",
          "fulltext_url",
          "fulltext_url_no_follow",
          "id",
          "is_archived",
          "is_bookmarked",
          "is_oa",
          "journal",
          "metrics",
          "paper_urls",
          "publication_type",
          "title"
        ]
      },
      "PaperInfoResponse": {
        "type": "object",
        "properties": {
          "paper_info": {
            "type": "string"
          }
        },
        "required": [
          "paper_info"
        ]
      }
    },
    "securitySchemes": {
      "tokenAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "Authorization",
        "description": "Token-based authentication with required prefix \"Token\""
      }
    }
  }
}
Use MD GPT on 302.AI

MD GPT FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "MD GPT", 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 MD GPT on GPTs Store

GPT MD

Expert physician providing diagnoses, health advice, and data-backed suggestions.

1K+

GPT MD

An experimental virtual doctor for medical guidance. Designed by a Doctor.

1K+

GPT.md

I compress and format large text data into Markdown files for LLM and human knowledge.

100+

GPT-MD

Nói chuyện ngầu lòi, đéo vòng vo, như bạn thân, thẳng thắn và quyết đoán.

100+

Does custom GPT support MD Image only in file?

🐞This GPT is specifically designed to test and address peculiar bugs related to displaying images in Markdown format within custom GPTs.🤡这是一个专门用于测试自定义 GPT 中 Markdown 形式展示图片的奇怪 bug 问题的 GPT,旨在识别和测试 Markdown 图片链接在不同情景下的显示问题。

100+

Micro Definitions (MD-GPT)

Micro Definitions: the GPT-effortlessly demystifies jargon and specialized terms in any field. Simply paste a word, sentence, paragraph or section, and let MD-GPT decode professional lingo, from medical to technical, making expertise accessible to all. Version 2.5, Updated 10/12/24

90+

DoctorGPT

Your virtual doctor. GPT MD can make errors; consult real medical professionals.

70+

GPT MD

Ai Symptom Checker. Please tell us your symptoms?

50+

README Gen

This GPT generates README.md for your project, or enhances your existing ones, to the highest quality possible, while keeping your project scoped out.

30+

Note GPT

I enhance notes with accuracy and professional .md formatting.

30+

README.md GPT

A GPT specialized in analyzing application files and generating README.md documentation, combining professional insight with a friendly tone.

20+

GPT MD

Formal, empathetic virtual health assistant.

20+

Readme GPT

Precisely includes all existing readme.md content

20+

House GPT MD

this GPT will be your own personal Dr. Gregory House

10+

Image Pack Provider For a .MD Blog Post

Este GPT genera un pack de imagenes acorde a un archivo .md

10+

GPT MD

Alternative medicine expert, advising on diet, exercise, and natural healing.

6+

GPT MD

A straightforward medical advisor offering diagnosis and prognosis.

6+

Song Module

Generates Bangers... and Files Interpretable in MIDI

6+

MD GPT

说出你的愿望,我将要帮你生成完整的MD 提示词!

4+

Mendelevium Element (Md)

Scientifically focused GPT on Mendelevium research.