Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
144 lines
4.2 KiB
TypeScript
144 lines
4.2 KiB
TypeScript
// Litellm provider module implements model/runtime integration.
|
|
import type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";
|
|
import {
|
|
createOpenAiCompatibleImageGenerationProvider,
|
|
type ImageGenerationProvider,
|
|
type ImageGenerationSourceImage,
|
|
toImageDataUrl,
|
|
} from "openclaw/plugin-sdk/image-generation";
|
|
import { normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
import { LITELLM_BASE_URL } from "./onboard.js";
|
|
|
|
const DEFAULT_SIZE = "1024x1024";
|
|
const DEFAULT_LITELLM_IMAGE_MODEL = "gpt-image-2";
|
|
const LITELLM_SUPPORTED_SIZES = [
|
|
"256x256",
|
|
"512x512",
|
|
"1024x1024",
|
|
"1024x1536",
|
|
"1024x1792",
|
|
"1536x1024",
|
|
"1792x1024",
|
|
"2048x2048",
|
|
"2048x1152",
|
|
"3840x2160",
|
|
"2160x3840",
|
|
] as const;
|
|
const LITELLM_MAX_INPUT_IMAGES = 5;
|
|
|
|
type LitellmProviderConfig = NonNullable<
|
|
NonNullable<OpenClawConfig["models"]>["providers"]
|
|
>[string];
|
|
|
|
function resolveLitellmProviderConfig(
|
|
cfg: OpenClawConfig | undefined,
|
|
): LitellmProviderConfig | undefined {
|
|
return cfg?.models?.providers?.litellm;
|
|
}
|
|
|
|
function resolveConfiguredLitellmBaseUrl(cfg: OpenClawConfig | undefined): string {
|
|
return normalizeOptionalString(resolveLitellmProviderConfig(cfg)?.baseUrl) ?? LITELLM_BASE_URL;
|
|
}
|
|
|
|
function imageToDataUrl(image: ImageGenerationSourceImage): string {
|
|
return toImageDataUrl({ buffer: image.buffer, mimeType: image.mimeType });
|
|
}
|
|
|
|
// LiteLLM's default proxy is loopback. Auto-enable private-network access only
|
|
// for loopback-style hosts; LAN/custom private endpoints should use the
|
|
// explicit models.providers.litellm.request.allowPrivateNetwork opt-in.
|
|
function isAutoAllowedLitellmHostname(hostname: string): boolean {
|
|
if (!hostname) {
|
|
return false;
|
|
}
|
|
// Strip IPv6 brackets if any: "[::1]" -> "::1".
|
|
const host =
|
|
hostname.startsWith("[") && hostname.endsWith("]") ? hostname.slice(1, -1) : hostname;
|
|
const lowered = host.toLowerCase();
|
|
if (
|
|
lowered === "localhost" ||
|
|
lowered === "host.docker.internal" ||
|
|
lowered.endsWith(".localhost")
|
|
) {
|
|
return true;
|
|
}
|
|
if (lowered === "127.0.0.1" || lowered.startsWith("127.")) {
|
|
return true;
|
|
}
|
|
if (lowered === "::1" || lowered === "0:0:0:0:0:0:0:1") {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function shouldAutoAllowPrivateLitellmEndpoint(baseUrl: string): boolean {
|
|
try {
|
|
const parsed = new URL(baseUrl);
|
|
if (parsed.protocol !== "http:" && parsed.protocol !== "https:") {
|
|
return false;
|
|
}
|
|
return isAutoAllowedLitellmHostname(parsed.hostname);
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
export function buildLitellmImageGenerationProvider(): ImageGenerationProvider {
|
|
return createOpenAiCompatibleImageGenerationProvider({
|
|
id: "litellm",
|
|
label: "LiteLLM",
|
|
defaultModel: DEFAULT_LITELLM_IMAGE_MODEL,
|
|
models: [DEFAULT_LITELLM_IMAGE_MODEL],
|
|
capabilities: {
|
|
generate: {
|
|
maxCount: 4,
|
|
supportsSize: true,
|
|
supportsAspectRatio: false,
|
|
supportsResolution: false,
|
|
},
|
|
edit: {
|
|
enabled: true,
|
|
maxCount: 4,
|
|
maxInputImages: LITELLM_MAX_INPUT_IMAGES,
|
|
supportsSize: true,
|
|
supportsAspectRatio: false,
|
|
supportsResolution: false,
|
|
},
|
|
geometry: {
|
|
sizes: [...LITELLM_SUPPORTED_SIZES],
|
|
},
|
|
},
|
|
defaultBaseUrl: LITELLM_BASE_URL,
|
|
resolveBaseUrl: ({ req }) => resolveConfiguredLitellmBaseUrl(req.cfg),
|
|
resolveAllowPrivateNetwork: ({ baseUrl }) =>
|
|
shouldAutoAllowPrivateLitellmEndpoint(baseUrl) ? true : undefined,
|
|
useConfiguredRequest: true,
|
|
buildGenerateRequest: ({ req, model, count }) => ({
|
|
kind: "json",
|
|
body: {
|
|
model,
|
|
prompt: req.prompt,
|
|
n: count,
|
|
size: req.size ?? DEFAULT_SIZE,
|
|
},
|
|
}),
|
|
buildEditRequest: ({ req, inputImages, model, count }) => ({
|
|
kind: "json",
|
|
body: {
|
|
model,
|
|
prompt: req.prompt,
|
|
n: count,
|
|
size: req.size ?? DEFAULT_SIZE,
|
|
images: inputImages.map((image) => ({
|
|
image_url: imageToDataUrl(image),
|
|
})),
|
|
},
|
|
}),
|
|
missingApiKeyError: "LiteLLM API key missing",
|
|
failureLabels: {
|
|
generate: "LiteLLM image generation failed",
|
|
edit: "LiteLLM image edit failed",
|
|
},
|
|
});
|
|
}
|