Spaces:
Build error
Build error
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\`\`\``; | |