MCPcopy Index your code
hub / github.com/continuedev/continue / processPrompts

Function processPrompts

extensions/cli/src/ui/hooks/useChat.ts:276–288  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

274 isChatHistoryInitialized
275 ) {
276 const processPrompts = async () => {
277 const { processAndCombinePrompts } = await import(
278 "../../util/promptProcessor.js"
279 );
280 const finalMessage = await processAndCombinePrompts(
281 additionalPrompts,
282 initialPrompt,
283 );
284
285 if (finalMessage) {
286 await handleUserMessage(finalMessage);
287 }
288 };
289
290 processPrompts().catch(console.error);
291 }

Callers 1

useChatFunction · 0.85

Calls 2

processAndCombinePromptsFunction · 0.85
handleUserMessageFunction · 0.85

Tested by

no test coverage detected