Bring LLM intelligence to live video
Bring LLM intelligence to live video
Join developers building video agents in
Assistive Technology
Gaming
AI Home Security
AI Safety
Content Moderation
Join developers today building vision applications
3 lines of code
import { RealtimeVision } from 'overshoot' ;
const vision = new RealtimeVision({
source: { type: 'camera', cameraFacing: 'user'},
model: 'Qwen/Qwen3-VL-30B-A3B-Instruct',
prompt: 'Read any visible text',
onResult: (result) = {
console.log(result.result)
}
})
await vision.start()
3 lines of code
import { RealtimeVision } from 'overshoot' ;
const vision = new RealtimeVision({
source: { type: 'camera', cameraFacing: 'user'},
model: 'Qwen/Qwen3-VL-30B-A3B-Instruct',
prompt: 'Read any visible text',
onResult: (result) = {
console.log(result.result)
}
})
await vision.start()