googleGemini2FlashLite constant

ChatModel const googleGemini2FlashLite

Implementation

static const ChatModel googleGemini2FlashLite = ChatModel(
  id: "gemini-2.0-flash-lite",
  deprecated: true,
  displayName: "Gemini 2.0 Flash Lite",
  cost: ChatModelCost(input: 0.075, output: 0.30),
  capabilities: ChatModelCapabilities(
    tools: false,
    ultraCompatibleMode: false,
    systemMode: ChatModelSystemMode.supported,
    contextWindow: 1048576,
    maxTokenOutput: 8192,
    inputModalities: [
      Modality.text,
      Modality.image,
      Modality.audio,
      Modality.video,
    ],
    outputModalities: [Modality.text],
    reasoning: false,
    structuredOutput: true,
    streaming: true,
    seesToolMessages: true,
  ),
);