21 lines
505 B
PowerShell
21 lines
505 B
PowerShell
[CmdletBinding()]
|
|
param(
|
|
[string]$UvPath,
|
|
[string]$OllamaPath,
|
|
[string]$OllamaModels,
|
|
[string]$DataDir,
|
|
[string]$UvCacheDir,
|
|
[string]$PythonInstallDir
|
|
)
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
$env:JAVIS_START_INTERFACE = 'gui'
|
|
|
|
$sharedStarter = Join-Path $PSScriptRoot 'start-javis.ps1'
|
|
if (-not (Test-Path -LiteralPath $sharedStarter -PathType Leaf)) {
|
|
throw "Das gemeinsame sichere Javis-Startskript wurde nicht gefunden."
|
|
}
|
|
|
|
& $sharedStarter @PSBoundParameters
|
|
exit $LASTEXITCODE
|