Venice's API doesn't support certain OpenAI-compatible parameters that Clawdbot sends by default: - `store`: Venice returns HTTP 400 with no body when this is present - `developer` role: Not supported by Venice's API This adds VENICE_COMPAT settings (supportsStore: false, supportsDeveloperRole: false) to all Venice model definitions, both from the static catalog and dynamically discovered models. Fixes issues reported in PR #1666 where users experienced silent failures (HTTP 400, no body) when using Venice models. Co-authored-by: jonisjongithub <jonisjongithub@users.noreply.github.com> Co-authored-by: Clawdbot <bot@clawd.bot>
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
name: Install Smoke
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
install-smoke:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout CLI
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup pnpm (corepack retry)
|
|
run: |
|
|
set -euo pipefail
|
|
corepack enable
|
|
for attempt in 1 2 3; do
|
|
if corepack prepare pnpm@10.23.0 --activate; then
|
|
pnpm -v
|
|
exit 0
|
|
fi
|
|
echo "corepack prepare failed (attempt $attempt/3). Retrying..."
|
|
sleep $((attempt * 10))
|
|
done
|
|
exit 1
|
|
|
|
- name: Install pnpm deps (minimal)
|
|
run: pnpm install --ignore-scripts --frozen-lockfile
|
|
|
|
- name: Run installer docker tests
|
|
env:
|
|
CLAWDBOT_INSTALL_URL: https://clawd.bot/install.sh
|
|
CLAWDBOT_INSTALL_CLI_URL: https://clawd.bot/install-cli.sh
|
|
CLAWDBOT_NO_ONBOARD: "1"
|
|
CLAWDBOT_INSTALL_SMOKE_SKIP_CLI: "1"
|
|
CLAWDBOT_INSTALL_SMOKE_SKIP_NONROOT: ${{ github.event_name == 'pull_request' && '1' || '0' }}
|
|
CLAWDBOT_INSTALL_SMOKE_PREVIOUS: "2026.1.11-4"
|
|
run: pnpm test:install:smoke
|