Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add text-followup.schema.json for text-followup preprocessor #932

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions preprocessors/text-followup.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://image.a11y.mcgill.ca/preprocessors/text-followup.schema.json",
"type": "object",
"title": "Text Followup",
"description": "Text-only response to a followup query containing a graphic and prompt from the user.",
"properties": {
"response_brief": {
"description": "A single sentence text followup response that is generated for the input graphic",
"type": "string",
"minLength": 0
},
"response_full": {
"description": "A few additional sentences of followup response that is generated for the input graphic",
"type": "string",
"minLength": 0
}
},
"required": ["response_brief"]
}
Loading