(provider)
| 897 | } |
| 898 | |
| 899 | function getDefaultImageModel(provider) { |
| 900 | if (provider === "openai") { |
| 901 | return "gpt-image-2"; |
| 902 | } |
| 903 | if (provider === "openrouter") { |
| 904 | return "google/gemini-3.1-flash-image-preview"; |
| 905 | } |
| 906 | return "gemini-3.1-flash-image-preview"; |
| 907 | } |
| 908 | |
| 909 | function getResolvedPrimaryBaseUrl() { |
| 910 | return (baseUrlInput?.value.trim() || DEFAULT_CUSTOM_BASE_URL); |
no outgoing calls
no test coverage detected