mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 21:12:54 +00:00
Move vLLM Qwen thinking control onto configured model compat metadata and carry it through catalog/model-selection/runtime thinking contexts. Also migrate legacy provider/default request params in doctor and keep Pi/runtime model rows buildable with explicit reasoning defaults. Thanks @rendrag-git. Co-authored-by: rendrag-git <253747599+rendrag-git@users.noreply.github.com>
69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
/**
|
|
* Provider-owned thinking policy input.
|
|
*
|
|
* Used by shared `/think`, ACP controls, and directive parsing to ask a
|
|
* provider whether a model supports special reasoning UX such as adaptive,
|
|
* xhigh, max, or a binary on/off toggle.
|
|
*/
|
|
export type ProviderThinkingPolicyContext = {
|
|
provider: string;
|
|
modelId: string;
|
|
};
|
|
|
|
export type ProviderThinkingModelCompat = {
|
|
thinkingFormat?: string;
|
|
supportedReasoningEfforts?: readonly string[] | null;
|
|
};
|
|
|
|
/**
|
|
* Provider-owned default thinking policy input.
|
|
*
|
|
* `reasoning` is the merged catalog hint for the selected model when one is
|
|
* available. Providers can use it to keep "reasoning model => low" behavior
|
|
* without re-reading the catalog themselves.
|
|
*
|
|
* `compat` carries model-level request contract facts for the selected model
|
|
* when available. Providers can use it to expose model-specific thinking
|
|
* profiles only when the configured payload style supports them.
|
|
*/
|
|
export type ProviderDefaultThinkingPolicyContext = ProviderThinkingPolicyContext & {
|
|
reasoning?: boolean;
|
|
compat?: ProviderThinkingModelCompat | null;
|
|
};
|
|
|
|
export type ProviderThinkingLevelId =
|
|
| "off"
|
|
| "minimal"
|
|
| "low"
|
|
| "medium"
|
|
| "high"
|
|
| "xhigh"
|
|
| "adaptive"
|
|
| "max";
|
|
|
|
export type ProviderThinkingLevel = {
|
|
id: ProviderThinkingLevelId;
|
|
/**
|
|
* Optional display label. Use this when the stored value differs from the
|
|
* provider-facing UX, for example binary providers storing `low` but showing
|
|
* `on`.
|
|
*/
|
|
label?: string;
|
|
/**
|
|
* Relative strength used when downgrading a stored level that the selected
|
|
* model no longer supports.
|
|
*/
|
|
rank?: number;
|
|
};
|
|
|
|
export type ProviderThinkingProfile = {
|
|
levels: ProviderThinkingLevel[] | ReadonlyArray<ProviderThinkingLevel>;
|
|
defaultLevel?: ProviderThinkingLevelId | null;
|
|
/**
|
|
* Some bundled providers have model-specific thinking contracts that are more
|
|
* current than cached generic catalog metadata. Keep this opt-in so
|
|
* `reasoning: false` remains authoritative for ordinary catalog entries.
|
|
*/
|
|
preserveWhenCatalogReasoningFalse?: boolean;
|
|
};
|