(httpUrl: string)
| 13 | const DEFAULT_OLLAMA_URL = 'http://localhost:11434' |
| 14 | |
| 15 | function toWebSocketUrl(httpUrl: string): string { |
| 16 | return httpUrl.replace('http://', 'ws://').replace('https://', 'wss://') |
| 17 | } |
| 18 | |
| 19 | function getHostnameFromUrl(url: string | undefined): string[] { |
| 20 | if (!url) return [] |
no test coverage detected