2
0
Files
bot/packages/forge/blocks/anthropic/helpers/isModelCompatibleWithVision.ts

6 lines
260 B
TypeScript
Raw Normal View History

2024-07-15 14:32:42 +02:00
import { wildcardMatch } from '@typebot.io/lib/wildcardMatch'
import { modelsWithImageUrlSupport } from '../constants'
export const isModelCompatibleWithVision = (model: string | undefined) =>
model ? wildcardMatch(modelsWithImageUrlSupport)(model) : false