Enable Persons with Neurodevelopment disorder.
AI powered Assistive Technology for person with hidden disability with cognitive assistance
AI powered Assistive Technology for person with hidden disability with cognitive assistance
from openai import OpenAI
client = OpenAI()
response = client.chat.completions.create(
model="gpt-4-vision-preview",
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "What's in the first image? What's in the second image?",
},
{
"type": "image_url",
"image_url": {
"url": "imageA.jpg",
},
},
{
"type": "image_url",
"image_url": {
"url": "imageB.jpg",
},
},
],
}
],
max_tokens=300,
)
print(response.choices[0])
Try out guide
Video shows how to install this app and how to use it
You can try out all 7 modules submitted as part of this single hackathon entry