https://scenex.jina.ai/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "SceneXplain",
"name_for_model": "SceneXplain",
"description_for_human": "SceneXplain lets you attach images to your prompt. Explore image storytelling beyond pixels.",
"description_for_model": "SceneXplain is an interface for interpreting images. By providing an image URL or a base64 encoded image, you enable an examination of the image, generating a detailed explanation of its content.",
"auth": {
"type": "service_http",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "569143dd202d4bfa8acf029a09896680"
}
},
"api": {
"type": "openapi",
"url": "https://scenex.jina.ai/openai.yaml",
"is_user_authenticated": false
},
"logo_url": "https://scenex.jina.ai/icons/icon-128x128.png",
"contact_email": "scenex@jina.ai",
"legal_info_url": "https://jina.ai/legal/"
}
https://scenex.jina.ai/openai.yaml
openapi: 3.0.1
info:
title: SceneXplain
description: A Plugin that takes an image url as input and return the description of that image. In the response to the user you display the image in markdown.
version: 'v1'
servers:
- url: https://scenex.jina.ai/chatgpt
paths:
/:
post:
operationId: explainImage
summary: Explain image with SceneXplain
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/explainImageRequest'
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/explainImageResponse'
components:
schemas:
explainImageResponse:
type: object
properties:
image:
type: string
description: URL of the image. You must show it to the user.
explanation:
type: string
description: Explanation of the image.
explainImageRequest:
type: object
required:
- image
properties:
image:
type: string
description: Image URL or base64 encoded image.
required: true
languages:
type: array
items:
type: string
description: Specify the language(s) of the description output.
required: false
features:
type: array
items:
type: string
description: Additional features to be enabled for the image explanation.
required: false