mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
9 lines
363 B
TypeScript
9 lines
363 B
TypeScript
// Sglang tests cover provider discovery.contract plugin behavior.
|
|
import { fileURLToPath } from "node:url";
|
|
import { describeSglangProviderDiscoveryContract } from "openclaw/plugin-sdk/provider-test-contracts";
|
|
|
|
describeSglangProviderDiscoveryContract({
|
|
load: () => import("./index.js"),
|
|
apiModuleId: fileURLToPath(new URL("./api.js", import.meta.url)),
|
|
});
|