sovyn-300m-cortex / scripts /start_ollama_bridge.ps1
SOVYN's picture
Upload folder using huggingface_hub
681909f verified
$ErrorActionPreference = "Stop"
$Root = Split-Path -Parent $PSScriptRoot
Set-Location $Root
$env:Path = [Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [Environment]::GetEnvironmentVariable("Path", "User")
& .\.venv\Scripts\python.exe scripts\ollama_bridge.py `
--checkpoint checkpoints\sovyn_300m_last.pt `
--tokenizer tokenizer_300m\sovyn.model `
--model-name sovyn:300m `
--host 127.0.0.1 `
--port 11435