forked from open-webui/open-webui
		
	Merge pull request #506 from ollama-webui/model-size
feat: display model size
This commit is contained in:
		
						commit
						684bdf5151
					
				
					 1 changed files with 4 additions and 1 deletions
				
			
		|  | @ -45,7 +45,10 @@ | |||
| 					{#if model.name === 'hr'} | ||||
| 						<hr /> | ||||
| 					{:else} | ||||
| 						<option value={model.name} class="text-gray-700 text-lg">{model.name}</option> | ||||
| 						<option value={model.name} class="text-gray-700 text-lg" | ||||
| 							>{model.name + | ||||
| 								`${model.size ? ` (${(model.size / 1024 ** 3).toFixed(1)}GB)` : ''}`}</option | ||||
| 						> | ||||
| 					{/if} | ||||
| 				{/each} | ||||
| 			</select> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy Jaeryang Baek
						Timothy Jaeryang Baek