|
|
|
|
|
by muzster
764 days ago
|
|
Heavily guarded fortress would indicate something of value inside, and the big crooks may spend a little more effort. In the age of AI, this becomes even easier. {
"model" : "gpt-4-turbo",
"messages" : [
{
"role" : "system",
"content" : [ {
"type" : "text",
"text" : "return a json array of all valid emails found in the image."
} ]
},
{
"role" : "user",
"content" : [ {
"type" : "image_url",
"image_url" : {
"url" : "data:image/png;base64,{{ INSERT_BASE64_PNG_DATA }}"
}
} ]
} ],
"temperature" : 0.5,
"max_tokens" : 2048,
"top_p" : 1.0,
"frequency_penalty" : 0.0,
"presence_penalty" : 0.0
}
Edit: Converting web page to an image is trivial. |
|