forked from open-webui/open-webui
		
	endpoint error fix
This commit is contained in:
		
							parent
							
								
									c5e36c8d11
								
							
						
					
					
						commit
						ecb4d1b8d9
					
				
					 2 changed files with 16 additions and 14 deletions
				
			
		|  | @ -1,10 +1,7 @@ | |||
| import { browser, dev } from '$app/environment'; | ||||
| 
 | ||||
| export const ENDPOINT = | ||||
| 	process.env.OLLAMA_ENDPOINT != undefined | ||||
| 		? process.env.OLLAMA_ENDPOINT | ||||
| 		: browser | ||||
| 		? `http://${location.hostname}:11434` | ||||
| 		: dev | ||||
| 		? 'http://127.0.0.1:11434' | ||||
| 		: 'http://host.docker.internal:11434'; | ||||
| export const ENDPOINT = browser | ||||
| 	? `http://${location.hostname}:11434` | ||||
| 	: dev | ||||
| 	? 'http://127.0.0.1:11434' | ||||
| 	: 'http://host.docker.internal:11434'; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy J. Baek
						Timothy J. Baek