Spaces:
Build error
Build error
OpenHands
/
frontend
/src
/components
/features
/chat
/event-content-helpers
/should-render-event.ts
import { OpenHandsAction } from "#/types/core/actions"; | |
import { OpenHandsEventType } from "#/types/core/base"; | |
import { | |
isCommandAction, | |
isCommandObservation, | |
isOpenHandsAction, | |
isOpenHandsObservation, | |
} from "#/types/core/guards"; | |
import { OpenHandsObservation } from "#/types/core/observations"; | |
const COMMON_NO_RENDER_LIST: OpenHandsEventType[] = [ | |
"system", | |
"agent_state_changed", | |
"change_agent_state", | |
]; | |
const ACTION_NO_RENDER_LIST: OpenHandsEventType[] = ["recall"]; | |
export const shouldRenderEvent = ( | |
event: OpenHandsAction | OpenHandsObservation, | |
) => { | |
if (isOpenHandsAction(event)) { | |
if (isCommandAction(event) && event.source === "user") { | |
// For user commands, we always hide them from the chat interface | |
return false; | |
} | |
const noRenderList = COMMON_NO_RENDER_LIST.concat(ACTION_NO_RENDER_LIST); | |
return !noRenderList.includes(event.action); | |
} | |
if (isOpenHandsObservation(event)) { | |
if (isCommandObservation(event) && event.source === "user") { | |
// For user commands, we always hide them from the chat interface | |
return false; | |
} | |
return !COMMON_NO_RENDER_LIST.includes(event.observation); | |
} | |
return true; | |
}; | |