MCPcopy Create free account
hub / github.com/VGabriel45/SolidityVisualizer / renderReasoningMessage

Function renderReasoningMessage

src/components/loading.tsx:127–139  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

125 };
126
127 const renderReasoningMessage = () => {
128 const reasoningType = shouldShowReasoning(status);
129 switch (reasoningType) {
130 case "explanation":
131 return "Model is analyzing the repository structure and codebase...";
132 case "mapping":
133 return "Model is identifying component relationships and dependencies...";
134 case "diagram":
135 return "Model is planning the diagram layout and connections...";
136 default:
137 return null;
138 }
139 };
140
141 const getStatusDisplay = () => {
142 const reasoningType = shouldShowReasoning(status);

Callers 1

LoadingFunction · 0.85

Calls 1

shouldShowReasoningFunction · 0.85

Tested by

no test coverage detected