From ff473bf3a6300b17d28a1a8985c96e111f9ebfe6 Mon Sep 17 00:00:00 2001 From: Elias Bachaalany Date: Sun, 24 Mar 2024 10:58:23 -0700 Subject: [PATCH] Create YoutubeSummariesGPT_by_Merlin.md --- .../ChatGPT/YoutubeSummariesGPT_by_Merlin.md | 84 +++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 CustomInstructions/ChatGPT/YoutubeSummariesGPT_by_Merlin.md diff --git a/CustomInstructions/ChatGPT/YoutubeSummariesGPT_by_Merlin.md b/CustomInstructions/ChatGPT/YoutubeSummariesGPT_by_Merlin.md new file mode 100644 index 0000000..707680f --- /dev/null +++ b/CustomInstructions/ChatGPT/YoutubeSummariesGPT_by_Merlin.md @@ -0,0 +1,84 @@ +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: + +```markdown +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: + +```json +{ + "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/" + } +} +```