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