fix(models): satisfy type and export checks

This commit is contained in:
Vincent Koc
2026-08-01 14:17:58 +02:00
parent d73a5eb6f5
commit 590ad5770b
2 changed files with 2 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ import {
} from "../../agents/model-suppression.js";
import { openAIModelCatalogRoutePolicy } from "../../agents/openai-model-routes.js";
import type { ModelDefinitionConfig, ModelProviderConfig } from "../../config/types.models.js";
import type { OpenClawConfig } from "../../config/types.openclaw.js";
import type { ModelRegistry } from "../../llm/model-registry.js";
import type { Model } from "../../llm/types.js";
import { createLazyImportLoader } from "../../shared/lazy-promise.js";

View File

@@ -25,7 +25,7 @@ import {
const PROVIDER_POLICY_ARTIFACT_CANDIDATES = ["provider-policy-api.js"] as const;
const providerPolicySurfaceByPluginId = new Map<string, BundledProviderPolicySurface | null>();
export type ProviderProjectConfiguredModelRowContext = {
type ProviderProjectConfiguredModelRowContext = {
config?: OpenClawConfig;
agentDir?: string;
workspaceDir?: string;