Spaces:
Runtime error
Runtime error
File size: 315 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 | /** Jules REST API base — https://developers.google.com/jules/api */
export const JULES_API_BASE_URL = "https://jules.googleapis.com/v1alpha";
export function buildJulesApiUrl(path: string): string {
const normalized = path.startsWith("/") ? path : `/${path}`;
return `${JULES_API_BASE_URL}${normalized}`;
}
|