mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-06-23 05:26:20 +08:00
- Deleted `geminicli` provider and related `Apply` logic. - Removed all translator packages specific to Gemini CLI (Claude, Codex integrations). - Purged associated test files for Gemini CLI translation. - Removed `GeminiAuthenticator` and all associated authentication logic (OAuth flows, token handling, refresh logic). - Deleted internal/executor Gemini OAuth support, including bearer token handling and runtime API logic. - Purged all tests, configs, and command-line flags specific to Gemini OAuth flows. - Updated documentation and aliases to reflect Gemini removal. - Renamed `parseRetryDelay` to `ParseRetryDelay` and `deleteJSONField` to `DeleteJSONField`. - Updated references in `antigravity_executor` and tests to use the new `helps` package. - Adjusted import paths and test cases to ensure compatibility with the new location. - Updated README files to reflect changes in the retry logic references. - Updated `.github/ISSUE_TEMPLATE/bug_report.md` to remove deprecated Gemini CLI mention.
25 lines
770 B
Go
25 lines
770 B
Go
// Package constant defines provider name constants used throughout the CLI Proxy API.
|
|
// These constants identify different AI service providers and their variants,
|
|
// ensuring consistent naming across the application.
|
|
package constant
|
|
|
|
const (
|
|
// Gemini represents the Google Gemini provider identifier.
|
|
Gemini = "gemini"
|
|
|
|
// Codex represents the OpenAI Codex provider identifier.
|
|
Codex = "codex"
|
|
|
|
// Claude represents the Anthropic Claude provider identifier.
|
|
Claude = "claude"
|
|
|
|
// OpenAI represents the OpenAI provider identifier.
|
|
OpenAI = "openai"
|
|
|
|
// OpenaiResponse represents the OpenAI response format identifier.
|
|
OpenaiResponse = "openai-response"
|
|
|
|
// Antigravity represents the Antigravity response format identifier.
|
|
Antigravity = "antigravity"
|
|
)
|