Backup-bdg's picture
Upload 565 files
b59aa07 verified
raw
history blame contribute delete
323 Bytes
import { OpenHandsAction } from "#/types/core/actions";
import { OpenHandsObservation } from "#/types/core/observations";
export const MAX_CONTENT_LENGTH = 1000;
export const getDefaultEventContent = (
event: OpenHandsAction | OpenHandsObservation,
): string => `\`\`\`json\n${JSON.stringify(event, null, 2)}\n\`\`\``;