mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
// Vllm API module exposes the plugin public contract.
|
|
export {
|
|
VLLM_DEFAULT_API_KEY_ENV_VAR,
|
|
VLLM_DEFAULT_BASE_URL,
|
|
VLLM_MODEL_PLACEHOLDER,
|
|
VLLM_PROVIDER_LABEL,
|
|
} from "./defaults.js";
|
|
export { buildVllmProvider } from "./models.js";
|
|
export { createVllmQwenThinkingWrapper, wrapVllmProviderStream } from "./stream.js";
|