feat(ImageToText): add ImageToText task support

master
sati.ac 2023-08-31 18:55:24 +03:00
parent 881c82bd12
commit de61055967
2 changed files with 10 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "sati",
"version": "0.3.2",
"version": "0.3.3",
"description": "next generation anti-captcha",
"license": "MIT",
"repository": {

View File

@ -46,6 +46,15 @@ export type tasks = {
validate: string,
seccode: string
}
},
ImageToText: {
params: {
image: string,
type?: string,
},
result: {
result: string
}
}
}