Created
December 11, 2023 14:53
-
-
Save BytefishMedium/1d01433cd576725ca346f689c29cf9d4 to your computer and use it in GitHub Desktop.
YouTube Caption GPT 配置的Action文件
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "openapi": "3.1.0", | |
| "info": { | |
| "title": "Get YouTube Video Caption", | |
| "description": "This API allows you to get the caption of a YouTube video", | |
| "version": "v1.0.0" | |
| }, | |
| "servers": [ | |
| { | |
| "url": "https://you-tube-caption-express-server-shuai1996.replit.app/" | |
| } | |
| ], | |
| "paths": { | |
| "/": { | |
| "get": { | |
| "description": "Get the caption of a YouTube video", | |
| "operationId": "YouTubeCaption", | |
| "parameters": [ | |
| { | |
| "name": "videoID", | |
| "in": "query", | |
| "description": "Get the caption of a YouTube video", | |
| "required": true, | |
| "schema": { | |
| "type": "string" | |
| } | |
| } | |
| ], | |
| "deprecated": false | |
| } | |
| } | |
| }, | |
| "components": { | |
| "schemas": {} | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment