/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { Box, Newline, Text, useInput } from 'ink'; import { Colors } from '../colors.js'; interface GeminiPrivacyNoticeProps { onExit: () => void; } export const GeminiPrivacyNotice = ({ onExit }: GeminiPrivacyNoticeProps) => { useInput((input, key) => { if (key.escape) { onExit(); } }); return ( Gemini API Key Notice By using the Gemini API[1], Google AI Studio [2], and the other Google developer services that reference these terms (collectively, the "APIs" or "Services"), you are agreeing to Google APIs Terms of Service (the "API Terms") [3], and the Gemini API Additional Terms of Service (the "Additional Terms") [4]. [1]{' '} https://ai.google.dev/docs/gemini_api_overview [2] https://aistudio.google.com/ [3]{' '} https://developers.google.com/terms [4]{' '} https://ai.google.dev/gemini-api/terms Press Esc to exit. ); };