Skip to content

Instantly share code, notes, and snippets.

@BytefishMedium
Created December 11, 2023 14:53
Show Gist options
  • Save BytefishMedium/1d01433cd576725ca346f689c29cf9d4 to your computer and use it in GitHub Desktop.
Save BytefishMedium/1d01433cd576725ca346f689c29cf9d4 to your computer and use it in GitHub Desktop.
YouTube Caption GPT 配置的Action文件
{
"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