(address: string)
| 415 | }; |
| 416 | |
| 417 | const handleCheckCustomServer = async (address: string) => { |
| 418 | await checkCustomServer(address); |
| 419 | const updated = getCustomServers(); |
| 420 | setCustomServers(updated); |
| 421 | fetchModels(); |
| 422 | }; |
| 423 | |
| 424 | // Handler for saving inference URL (Tauri only) |
| 425 | const handleSetAppInferenceUrl = async (url: string) => { |
nothing calls this directly
no test coverage detected