6 lines
260 B
TypeScript
6 lines
260 B
TypeScript
import { wildcardMatch } from '@typebot.io/lib/wildcardMatch'
|
|
import { modelsWithImageUrlSupport } from '../constants'
|
|
|
|
export const isModelCompatibleWithVision = (model: string | undefined) =>
|
|
model ? wildcardMatch(modelsWithImageUrlSupport)(model) : false
|