Posted by
It is hard for me to believe there is not more subscribers on this incredible site.
https://www.greenyroad.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "URL Reader",
"name_for_model": "url_reader",
"description_for_human": "Read multiple URLs and their content for chat context",
"description_for_model": "Read multiple URLs and their content for chat context",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://www.greenyroad.com/openapi.yaml",
"is_user_authenticated": false
},
"logo_url": "https://www.greenyroad.com/ms-icon-310x310.png",
"contact_email": "hello.greenroad@gmail.com",
"legal_info_url": "https://www.greenyroad.com/legal"
}
https://www.greenyroad.com/openapi.yaml
openapi: 3.0.0
info:
title: URL Reader
version: 1.0
servers:
- url: https://greenyroad.com
paths:
/api/readUrls:
post:
summary: Read the contents of multiple URLs
operationId: parseURLs
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
urls:
type: string
description: A list of URLs separated by commas
example: "https://example.com,https://example.org"
responses:
"200":
description: A JSON array of content
content:
application/json:
schema:
type: array
items:
type: object
properties:
url:
type: string
description: The URL
content:
type: string
description: The content of the URL