Initial SQL-only 1C adapter baseline
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
param(
|
||||
[string]$BaseUrl = "http://docker-gpu.cin.su:8000",
|
||||
[string]$Model = "qwen3-4b-instruct"
|
||||
)
|
||||
|
||||
$ErrorActionPreference = "Stop"
|
||||
|
||||
$modelsUrl = "$($BaseUrl.TrimEnd('/'))/v1/models"
|
||||
Write-Host "Checking models endpoint: $modelsUrl"
|
||||
Invoke-RestMethod -Method Get -Uri $modelsUrl | ConvertTo-Json -Depth 10
|
||||
|
||||
Write-Host ""
|
||||
Write-Host "Checking chat endpoint..."
|
||||
python scripts/smoke_chat.py --base-url $BaseUrl --model $Model
|
||||
Reference in New Issue
Block a user