sandbox-agent/factory/packages/cli/src/build-id.ts
2026-03-09 14:00:20 -07:00

7 lines
198 B
TypeScript

declare const __HF_BUILD_ID__: string | undefined;
export const CLI_BUILD_ID =
typeof __HF_BUILD_ID__ === "string" && __HF_BUILD_ID__.trim().length > 0
? __HF_BUILD_ID__.trim()
: "dev";