publishing pipeline update + model spec

This commit is contained in:
Game_Time
2026-03-16 16:56:23 +05:00
parent baf312a02e
commit e6eeae8fa6
26 changed files with 1089 additions and 428 deletions

View File

@@ -28,14 +28,14 @@ if [[ "$cmd" == "serve" ]]; then
ARGS+=("$@")
fi
exec python chatmock.py "${ARGS[@]}"
exec chatmock "${ARGS[@]}"
elif [[ "$cmd" == "login" ]]; then
ARGS=(login --no-browser)
if bool "${VERBOSE:-}" || bool "${CHATGPT_LOCAL_VERBOSE:-}"; then
ARGS+=(--verbose)
fi
exec python chatmock.py "${ARGS[@]}"
exec chatmock "${ARGS[@]}"
else
exec "$cmd" "$@"
fi