mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 09:17:53 +00:00
Add privacy notice slash command (#2059)
This commit is contained in:
committed by
GitHub
parent
4fbffdf617
commit
a2a46c7c67
58
packages/cli/src/ui/privacy/GeminiPrivacyNotice.tsx
Normal file
58
packages/cli/src/ui/privacy/GeminiPrivacyNotice.tsx
Normal file
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* @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 (
|
||||
<Box flexDirection="column" marginBottom={1}>
|
||||
<Text bold color={Colors.AccentPurple}>
|
||||
Gemini API Key Notice
|
||||
</Text>
|
||||
<Newline />
|
||||
<Text>
|
||||
By using the Gemini API<Text color={Colors.AccentBlue}>[1]</Text>,
|
||||
Google AI Studio
|
||||
<Text color={Colors.AccentRed}>[2]</Text>, 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")
|
||||
<Text color={Colors.AccentGreen}>[3]</Text>, and the Gemini API
|
||||
Additional Terms of Service (the "Additional Terms")
|
||||
<Text color={Colors.AccentPurple}>[4]</Text>.
|
||||
</Text>
|
||||
<Newline />
|
||||
<Text>
|
||||
<Text color={Colors.AccentBlue}>[1]</Text>{' '}
|
||||
https://ai.google.dev/docs/gemini_api_overview
|
||||
</Text>
|
||||
<Text>
|
||||
<Text color={Colors.AccentRed}>[2]</Text> https://aistudio.google.com/
|
||||
</Text>
|
||||
<Text>
|
||||
<Text color={Colors.AccentGreen}>[3]</Text>{' '}
|
||||
https://developers.google.com/terms
|
||||
</Text>
|
||||
<Text>
|
||||
<Text color={Colors.AccentPurple}>[4]</Text>{' '}
|
||||
https://ai.google.dev/gemini-api/terms
|
||||
</Text>
|
||||
<Newline />
|
||||
<Text color={Colors.Gray}>Press Esc to exit.</Text>
|
||||
</Box>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user