mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 03:30:10 +00:00
Fix Gemini flex PayGo header and add OpenAI GPT-5-nano/GPT-5.4 flex routers (#5511)
This commit is contained in:
parent
0e72bdabd7
commit
f7f9cf96b2
10 changed files with 76 additions and 7 deletions
|
|
@ -63,6 +63,7 @@ export const ProxyLocation = {
|
|||
ResidentialNL: "RESIDENTIAL_NL",
|
||||
ResidentialPH: "RESIDENTIAL_PH",
|
||||
ResidentialKR: "RESIDENTIAL_KR",
|
||||
ResidentialSA: "RESIDENTIAL_SA",
|
||||
ResidentialISP: "RESIDENTIAL_ISP",
|
||||
None: "NONE",
|
||||
} as const;
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ export const SUPPORTED_COUNTRY_CODES = [
|
|||
"NZ",
|
||||
"PH",
|
||||
"KR",
|
||||
"SA",
|
||||
"TR",
|
||||
"ZA",
|
||||
] as const;
|
||||
|
|
@ -44,6 +45,7 @@ export const COUNTRY_NAMES: Record<SupportedCountryCode, string> = {
|
|||
NZ: "New Zealand",
|
||||
PH: "Philippines",
|
||||
KR: "South Korea",
|
||||
SA: "Saudi Arabia",
|
||||
TR: "Turkey",
|
||||
ZA: "South Africa",
|
||||
};
|
||||
|
|
@ -67,6 +69,7 @@ export const COUNTRY_FLAGS: Record<SupportedCountryCode, string> = {
|
|||
NZ: "🇳🇿",
|
||||
PH: "🇵🇭",
|
||||
KR: "🇰🇷",
|
||||
SA: "🇸🇦",
|
||||
TR: "🇹🇷",
|
||||
ZA: "🇿🇦",
|
||||
};
|
||||
|
|
@ -92,6 +95,7 @@ const PROXY_LOCATION_TO_COUNTRY: Record<string, string> = {
|
|||
[ProxyLocation.ResidentialNZ]: "NZ",
|
||||
[ProxyLocation.ResidentialPH]: "PH",
|
||||
[ProxyLocation.ResidentialKR]: "KR",
|
||||
[ProxyLocation.ResidentialSA]: "SA",
|
||||
[ProxyLocation.ResidentialTR]: "TR",
|
||||
[ProxyLocation.ResidentialZA]: "ZA",
|
||||
};
|
||||
|
|
@ -116,6 +120,7 @@ const COUNTRY_TO_PROXY_LOCATION: Record<string, ProxyLocation> = {
|
|||
NZ: ProxyLocation.ResidentialNZ,
|
||||
PH: ProxyLocation.ResidentialPH,
|
||||
KR: ProxyLocation.ResidentialKR,
|
||||
SA: ProxyLocation.ResidentialSA,
|
||||
TR: ProxyLocation.ResidentialTR,
|
||||
ZA: ProxyLocation.ResidentialZA,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue