File size: 436 Bytes
681909f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
$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