UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

53 lines (48 loc) 1.7 kB
import { AIImageModelCard } from '@/types/aiModel'; import { fluxKontextDevParamsSchema } from '../paramsSchemas/fal/flux-kontext-dev'; import { fluxProKontextParamsSchema } from '../paramsSchemas/fal/flux-pro-kontext'; import { fluxSchnellParamsSchema } from '../paramsSchemas/fal/flux-schnell'; import { imagen4ParamsSchema } from '../paramsSchemas/fal/imagen4'; const falImageModels: AIImageModelCard[] = [ { description: 'Frontier image editing model.', displayName: 'FLUX.1 Kontext Dev', enabled: true, id: 'flux-kontext/dev', parameters: fluxKontextDevParamsSchema, releasedAt: '2025-06-28', type: 'image', }, { description: 'FLUX.1 Kontext [pro] 能够处理文本和参考图像作为输入,无缝实现目标性的局部编辑和复杂的整体场景变换。', displayName: 'FLUX.1 Kontext [pro]', enabled: true, id: 'flux-pro/kontext', parameters: fluxProKontextParamsSchema, releasedAt: '2025-05-01', type: 'image', }, { description: 'FLUX.1 [schnell] 是一个拥有120亿参数的流式转换器模型,能够在1到4步内从文本生成高质量图像,适合个人和商业用途。', displayName: 'FLUX.1 Schnell', enabled: true, id: 'flux/schnell', parameters: fluxSchnellParamsSchema, releasedAt: '2024-08-01', type: 'image', }, { description: 'Google 最高质量的图像生成模型', displayName: 'Imagen 4', enabled: true, id: 'imagen4/preview', organization: 'Deepmind', parameters: imagen4ParamsSchema, releasedAt: '2025-05-21', type: 'image', }, ]; export const allModels = [...falImageModels]; export default allModels;