Initial open-source release

This commit is contained in:
Will Chen
2025-04-11 09:37:05 -07:00
commit 43f67e0739
208 changed files with 45476 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
// e.g. [dyad-qa=add-dep]
// Canned responses for test prompts
const TEST_RESPONSES: Record<string, string> = {
"add-dep": `I'll add that dependency for you.
<dyad-add-dependency packages="deno"></dyad-add-dependency>
EOM`,
"add-non-existing-dep": `I'll add that dependency for you.
<dyad-add-dependency packages="@angular/does-not-exist"></dyad-add-dependency>
EOM`,
"add-multiple-deps": `I'll add that dependency for you.
<dyad-add-dependency packages="react-router-dom react-query"></dyad-add-dependency>
EOM`,
};
/**
* Checks if a prompt is a test prompt and returns the corresponding canned response
* @param prompt The user prompt
* @returns The canned response if it's a test prompt, null otherwise
*/
export function getTestResponse(prompt: string): string | null {
const match = prompt.match(/\[dyad-qa=([^\]]+)\]/);
if (match) {
const testKey = match[1];
return TEST_RESPONSES[testKey] || null;
}
return null;
}
/**
* Streams a canned test response to the client
* @param event The IPC event
* @param chatId The chat ID
* @param testResponse The canned response to stream
* @param abortController The abort controller for this stream
* @param updatedChat The chat data with messages
* @returns The full streamed response
*/
export async function streamTestResponse(
event: Electron.IpcMainInvokeEvent,
chatId: number,
testResponse: string,
abortController: AbortController,
updatedChat: any
): Promise<string> {
console.log(`Using canned response for test prompt`);
// Simulate streaming by splitting the response into chunks
const chunks = testResponse.split(" ");
let fullResponse = "";
for (const chunk of chunks) {
// Skip processing if aborted
if (abortController.signal.aborted) {
break;
}
// Add the word plus a space
fullResponse += chunk + " ";
// Send the current accumulated response
event.sender.send("chat:response:chunk", {
chatId: chatId,
messages: [
...updatedChat.messages,
{
role: "assistant",
content: fullResponse,
},
],
});
// Add a small delay to simulate streaming
await new Promise((resolve) => setTimeout(resolve, 10));
}
return fullResponse;
}