We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d351de commit 752ea49Copy full SHA for 752ea49
services/geminiService.ts
@@ -57,7 +57,7 @@ export const generateScriptFromMaterial = async (material: any) => {
57
try {
58
// Zkrátíme vstup na 2000 znaků, aby malina nehodila chybu 500
59
const materialSnippet = JSON.stringify(material).substring(0, 2000);
60
- const prompt = `Jsi studijní asistent. Vytvoř krátký scénář podcastu z tohoto textu: ${materialSnippet}`;
+ const prompt = `Jsi studijní asistent. Vytvoř krátký scénář podcastu z tohoto textu (max 3 odstavce): ${materialSnippet}`;
61
62
const result = await sendMessageToGemini(prompt);
63
0 commit comments