MCPcopy Create free account
hub / github.com/ResearAI/AutoFigure / findCachedResponse

Function findCachedResponse

frontend/lib/cached-responses.ts:911–921  ·  view source on GitHub ↗
(
    promptText: string,
    hasImage: boolean,
)

Source from the content-addressed store, hash-verified

909]
910
911export function findCachedResponse(
912 promptText: string,
913 hasImage: boolean,
914): CachedResponse | undefined {
915 return CACHED_EXAMPLE_RESPONSES.find(
916 (c) =>
917 c.promptText === promptText &&
918 c.hasImage === hasImage &&
919 c.xml !== "",
920 )
921}

Callers 2

onFormSubmitFunction · 0.90
handleChatRequestFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected