// oxlint-disable-next-line no-unused-vars
import { Html } from "@elysiajs/html";
import { renderFragment } from "../../base";
export function aiHelperChatResponse(
response: string,
history: { role: "user" | "assistant"; content: string }[] = []
): string {
return renderFragment(
<>
>
);
}
export function aiHelperGenerateResponse(
prompt: string,
history: { role: "user" | "assistant"; content: string }[] = []
): string {
const assistantMessage = "I've generated a prompt based on your description! You can see it in the Current Prompt editor below. Feel free to ask me to modify it or explain any part.";
return renderFragment(
<>