mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 08:40:43 +00:00
12 lines
330 B
TypeScript
12 lines
330 B
TypeScript
import type { Api, Model } from "@mariozechner/pi-ai";
|
|
|
|
/**
|
|
* Fully-resolved runtime model shape used after provider/plugin-owned
|
|
* discovery, overrides, and compat normalization.
|
|
*/
|
|
export type ProviderRuntimeModel = Model<Api> & {
|
|
contextTokens?: number;
|
|
params?: Record<string, unknown>;
|
|
requestTimeoutMs?: number;
|
|
};
|