observer / src /types.ts
jbilcke-hf's picture
jbilcke-hf HF staff
add support for whisper-turbo (base)
7249a2e
raw
history blame
334 Bytes
export interface ImageAnalysisRequest {
image: string // in base64
prompt: string
}
export interface ImageAnalysisResponse {
result: string
error?: string
}
export interface SoundAnalysisRequest {
sound: string // in base64
prompt: string
}
export interface SoundAnalysisResponse {
result: string
error?: string
}