File size: 259 Bytes
5da4770 | 1 2 3 4 5 6 7 | import { isLocalMode } from './lib/config';
export const agentPlaygroundFlagFrontend = isLocalMode();
export const marketplaceFlagFrontend = isLocalMode();
export const agentPlaygroundEnabled = isLocalMode();
export const marketplaceEnabled = isLocalMode();
|