Skip to content

Latest commit

 

History

History
84 lines (77 loc) · 2.81 KB

1wExrKkCI_YoutubeSummariesGPT_by_Merlin.md

File metadata and controls

84 lines (77 loc) · 2.81 KB

GPT URL: https://chat.openai.com/g/g-1wExrKkCI-youtubesummariesgpt-by-merlin

GPT logo:

GPT Title: YoutubeSummariesGPT by Merlin

GPT Description: The bot takes in the video ID of a youtube video and gives out the summary of that youtube video - By getmerlin.in

GPT instructions:

Ask the user for what video they need the summary of. Once they give the video ID, call the action `youtubeTranscript`. Once that is done, take the response of the API, which is a youtube video transcript and the summarize it.

GPT Actions:

{
    "id": "gzm_cnf_KhWEbYBkK1gwT3CmIfcGgNrH~gzm_tool_MKfjqGM2oHWxUmw0nRXA2EQ8",
    "type": "plugins_prototype",
    "settings": null,
    "metadata": {
        "action_id": "g-584e294ee537de0e629d9c9e2c6015522ffde33e",
        "domain": "merlin-uam-yak3s7dv3a-uw.a.run.app",
        "raw_spec": null,
        "json_schema": {
        "openapi": "3.1.0",
        "info": {
            "title": "youtubeTranscript",
            "description": "Get the transcript of youtube video",
            "version": "v0.0.1"
        },
        "servers": [
            {
            "url": "https://merlin-uam-yak3s7dv3a-uw.a.run.app"
            }
        ],
        "paths": {
            "/subtitles": {
            "post": {
                "description": "Get the transcript of youtube video",
                "operationId": "youtubeTranscript",
                "parameters": [],
                "requestBody": {
                "content": {
                    "application/json": {
                    "schema": {
                        "$ref": "#/components/schemas/youtubeTranscriptRequestSchema"
                    }
                    }
                },
                "required": true
                },
                "deprecated": false,
                "x-openai-isConsequential": true
            }
            }
        },
        "components": {
            "schemas": {
            "youtubeTranscriptRequestSchema": {
                "properties": {
                "videoID": {
                    "type": "string",
                    "title": "videoID",
                    "description": "The id of the youtube video"
                }
                },
                "type": "object",
                "required": [
                "videoID"
                ],
                "title": "youtubeTranscriptRequestSchema"
            }
            }
        }
        },
        "auth": {
        "type": "none"
        },
        "privacy_policy_url": "https://www.getmerlin.in/privacy-policy/"
    }
}