Spaces:
Running
Running
File size: 22,462 Bytes
745192b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 |
// Topics data
const topics = [
{ id: 1, title: "Introduction to Prompt Engineering", subtitle: "What & Why" },
{ id: 2, title: "Prompt Structure", subtitle: "Building Blocks" },
{ id: 3, title: "Clarity & Specificity", subtitle: "Writing Precise Prompts" },
{ id: 4, title: "Context & Background", subtitle: "Providing Information" },
{ id: 5, title: "Output Format", subtitle: "Specifying Structure" },
{ id: 6, title: "Iterative Refinement", subtitle: "Testing & Improving" },
{ id: 7, title: "Advanced Techniques", subtitle: "Expert Methods" },
{ id: 8, title: "Real-World Applications", subtitle: "Putting It Together" }
];
// State management
let currentTopic = 1;
let completedTopics = [];
// Initialize app
function init() {
renderTopicList();
initializeCanvases();
updateProgress();
showContextExample('minimal');
showFormatExample('list');
showIteration(1);
updateSpecificity();
setChallenge('email');
}
// Render topic list in sidebar
function renderTopicList() {
const topicList = document.getElementById('topicList');
topicList.innerHTML = topics.map(topic => `
<li class="topic-item ${topic.id === currentTopic ? 'active' : ''}" onclick="navigateTo(${topic.id})">
<h3>${topic.id}. ${topic.title}</h3>
<p>${topic.subtitle}</p>
</li>
`).join('');
}
// Navigate to topic
function navigateTo(topicId) {
// Hide current section
const currentSection = document.querySelector('.content-section.active');
if (currentSection) {
currentSection.classList.remove('active');
}
// Show new section
const newSection = document.getElementById(`topic-${topicId}`);
if (newSection) {
newSection.classList.add('active');
currentTopic = topicId;
// Mark previous topics as completed
if (!completedTopics.includes(topicId - 1) && topicId > 1) {
completedTopics.push(topicId - 1);
}
renderTopicList();
updateProgress();
window.scrollTo({ top: 0, behavior: 'smooth' });
}
}
// Update progress bar
function updateProgress() {
const progress = (currentTopic / topics.length) * 100;
const progressBar = document.getElementById('progressBar');
progressBar.style.width = `${progress}%`;
}
// Prompt quality evaluation
function updatePromptQuality() {
const role = document.getElementById('roleInput').value;
const context = document.getElementById('contextInput').value;
const task = document.getElementById('taskInput').value;
const format = document.getElementById('formatInput').value;
const components = [role, context, task, format];
const filledComponents = components.filter(c => c.trim().length > 0).length;
const qualityGrade = document.getElementById('qualityGrade');
const combinedPrompt = document.getElementById('combinedPrompt');
let gradeText = '';
let gradeClass = '';
if (filledComponents === 0) {
gradeText = 'Quality: Poor';
gradeClass = 'grade-poor';
combinedPrompt.textContent = 'Start filling in the components above...';
} else if (filledComponents <= 2) {
gradeText = 'Quality: Poor';
gradeClass = 'grade-poor';
} else if (filledComponents === 3) {
gradeText = 'Quality: Good';
gradeClass = 'grade-good';
} else {
gradeText = 'Quality: Excellent';
gradeClass = 'grade-excellent';
}
qualityGrade.textContent = gradeText;
qualityGrade.className = 'quality-grade ' + gradeClass;
if (filledComponents > 0) {
const parts = [];
if (role) parts.push(role);
if (context) parts.push(context);
if (task) parts.push(task);
if (format) parts.push(format);
combinedPrompt.textContent = parts.join(' ');
}
}
// Specificity slider
const specificityLevels = [
{
level: 1,
prompt: "Write about AI.",
quality: "Poor - Too vague, could mean anything"
},
{
level: 2,
prompt: "Write about machine learning.",
quality: "Poor - Still too broad, no specific focus"
},
{
level: 3,
prompt: "Explain how machine learning works in simple terms.",
quality: "Good - More specific, mentions simplicity"
},
{
level: 4,
prompt: "Explain how machine learning works in 200 words, using simple terms for beginners.",
quality: "Very Good - Specifies length and audience"
},
{
level: 5,
prompt: "Write a 200-word beginner's guide explaining how machine learning works, using a coffee shop analogy. Keep language simple for 10th graders.",
quality: "Excellent - Specific length, audience, analogy, and complexity level"
}
];
function updateSpecificity() {
const slider = document.getElementById('specificitySlider');
const value = parseInt(slider.value);
document.getElementById('specificityValue').textContent = value;
const level = specificityLevels[value - 1];
document.getElementById('specificityPrompt').textContent = level.prompt;
document.getElementById('specificityQuality').textContent = level.quality;
}
// Context examples
const contextExamples = {
minimal: {
prompt: "Write a marketing email.",
quality: "β οΈ Poor - No context about product, audience, or goal"
},
moderate: {
prompt: "Write a marketing email for our new coffee subscription service. Target coffee enthusiasts.",
quality: "β‘ Good - Has product and audience, but could use more details"
},
rich: {
prompt: "Write a marketing email for our new coffee subscription service. We're a sustainable brand targeting environmentally-conscious coffee enthusiasts aged 25-40. The service delivers ethically-sourced beans monthly. Tone should be warm and knowledgeable. Email should introduce the service, highlight sustainability, and include a 20% off first order offer. Keep it under 200 words.",
quality: "β Excellent - Complete context with audience, brand voice, key points, and constraints"
}
};
function showContextExample(level) {
// Update button states
const buttons = document.querySelectorAll('#topic-4 .scenario-btn');
buttons.forEach(btn => btn.classList.remove('active'));
event.target.classList.add('active');
const example = contextExamples[level];
document.getElementById('contextPromptText').textContent = example.prompt;
document.getElementById('contextQuality').textContent = example.quality;
}
// Format examples
const formatExamples = {
list: {
prompt: "Provide the information as a numbered list with brief explanations for each point.",
output: "1. First Point\n Brief explanation here\n\n2. Second Point\n Brief explanation here\n\n3. Third Point\n Brief explanation here"
},
table: {
prompt: "Create a comparison table with columns: Feature, Pros, Cons",
output: "| Feature | Pros | Cons |\n|------------|-------------------|-------------------|\n| Feature A | Advantage 1 | Disadvantage 1 |\n| Feature B | Advantage 2 | Disadvantage 2 |"
},
narrative: {
prompt: "Write the response as a 3-paragraph narrative with introduction, body, and conclusion.",
output: "Introduction paragraph setting context...\n\nBody paragraph with main information and details...\n\nConclusion paragraph summarizing key points..."
},
code: {
prompt: "Provide Python code with inline comments explaining each step.",
output: "# Calculate factorial of a number\ndef factorial(n):\n # Base case: factorial of 0 or 1 is 1\n if n <= 1:\n return 1\n # Recursive case\n return n * factorial(n - 1)"
},
json: {
prompt: "Return the data as a JSON object with proper structure.",
output: "{\n \"name\": \"Example\",\n \"items\": [\n { \"id\": 1, \"value\": \"Item 1\" },\n { \"id\": 2, \"value\": \"Item 2\" }\n ]\n}"
}
};
function showFormatExample(format) {
// Update button states
const buttons = document.querySelectorAll('#topic-5 .scenario-btn');
buttons.forEach(btn => btn.classList.remove('active'));
event.target.classList.add('active');
const example = formatExamples[format];
document.getElementById('formatPromptText').textContent = example.prompt;
document.getElementById('formatOutputExample').textContent = example.output;
}
// Iteration examples
const iterations = [
{
iteration: 1,
prompt: "Help me with my website.",
score: "25/100 - Very Poor",
notes: "β Issues: No context, unclear task, no specifics. AI won't know what kind of help you need."
},
{
iteration: 2,
prompt: "I have an e-commerce website and need help improving the checkout process. Can you suggest improvements?",
score: "65/100 - Good",
notes: "β Better: Added context (e-commerce) and specific area (checkout). β οΈ Still missing: What problems exist? What's the current user experience?"
},
{
iteration: 3,
prompt: "I run an e-commerce website selling handmade jewelry. Our checkout abandonment rate is 70%. Users complain it takes too long (5+ steps). Analyze this and suggest 3-5 specific improvements to reduce friction. Format as: Problem β Solution β Expected Impact.",
score: "95/100 - Excellent",
notes: "β Excellent: Clear context, specific problem with data, defined task, output format specified. AI has everything needed for quality response."
}
];
function showIteration(num) {
const iteration = iterations[num - 1];
document.getElementById('iterationPrompt').textContent = iteration.prompt;
document.getElementById('iterationScore').textContent = iteration.score;
document.getElementById('iterationNotes').innerHTML = `<p style="color: #ccc; margin: 0;">${iteration.notes}</p>`;
}
// Challenge scenarios
const challenges = {
email: {
scenario: "Your manager asked you to write a follow-up email to a client who attended yesterday's product demo. The client seemed interested but had concerns about pricing and implementation timeline."
},
code: {
scenario: "You need to create a JavaScript function that validates email addresses and returns detailed error messages for invalid formats. It should handle edge cases like missing @ symbols, invalid domains, and special characters."
},
creative: {
scenario: "Create a compelling Instagram caption for a new eco-friendly water bottle launch. Your brand targets young professionals who care about sustainability. The post should encourage engagement and include a call-to-action."
},
analysis: {
scenario: "You have sales data from Q1-Q4 showing declining revenue in Q3. Analyze what might have caused this dip and provide actionable recommendations. Consider seasonality, marketing spend, and competition."
}
};
let currentChallenge = 'email';
function setChallenge(type) {
currentChallenge = type;
// Update button states
const buttons = document.querySelectorAll('.challenge-box .scenario-btn');
buttons.forEach(btn => btn.classList.remove('active'));
event.target.classList.add('active');
document.getElementById('challengeScenario').textContent = challenges[type].scenario;
document.getElementById('challengeInput').value = '';
document.getElementById('challengeFeedback').classList.remove('show');
}
function evaluateChallenge() {
const input = document.getElementById('challengeInput').value;
const feedback = document.getElementById('challengeFeedback');
if (!input.trim()) {
feedback.innerHTML = '<p style="color: #FF6B35;">β οΈ Please write a prompt first!</p>';
feedback.classList.add('show');
return;
}
// Simple evaluation based on key elements
const hasRole = /you are|act as|as a/i.test(input);
const hasContext = input.length > 100;
const hasFormat = /format|structure|provide|return|list|table/i.test(input);
const hasConstraints = /words|length|tone|style|keep/i.test(input);
let score = 0;
let feedbackItems = [];
if (hasRole) {
score += 25;
feedbackItems.push('β Good: Includes role/persona');
} else {
feedbackItems.push('β οΈ Consider: Adding a role or persona');
}
if (hasContext) {
score += 25;
feedbackItems.push('β Good: Provides context');
} else {
feedbackItems.push('β οΈ Consider: Adding more context and background');
}
if (hasFormat) {
score += 25;
feedbackItems.push('β Good: Specifies output format');
} else {
feedbackItems.push('β οΈ Consider: Specifying the desired output format');
}
if (hasConstraints) {
score += 25;
feedbackItems.push('β Good: Includes constraints');
} else {
feedbackItems.push('β οΈ Consider: Adding constraints like length, tone, or style');
}
let grade = '';
let color = '';
if (score >= 75) {
grade = 'Excellent';
color = '#00FF88';
} else if (score >= 50) {
grade = 'Good';
color = '#FFB800';
} else {
grade = 'Needs Improvement';
color = '#FF6B35';
}
feedback.innerHTML = `
<h4 style="color: ${color}; margin-bottom: 12px;">Score: ${score}/100 - ${grade}</h4>
${feedbackItems.map(item => `<p style="margin: 8px 0; font-size: 14px;">${item}</p>`).join('')}
${score >= 75 ? '<p style="margin-top: 15px; color: #00D9FF;">π Great job! Your prompt includes all key components.</p>' : ''}
`;
feedback.classList.add('show');
}
function resetChallenge() {
document.getElementById('challengeInput').value = '';
document.getElementById('challengeFeedback').classList.remove('show');
}
// Practice challenge
function startPractice(topicId) {
alert('Practice mode: Try building a prompt for a simple task like \"Write a product description for noise-canceling headphones\" and include all four components: Role, Context, Task, and Format!');
}
// Template copy
function copyTemplate(element) {
const template = element.querySelector('pre').textContent;
// Create temporary textarea
const textarea = document.createElement('textarea');
textarea.value = template;
document.body.appendChild(textarea);
textarea.select();
try {
document.execCommand('copy');
// Show feedback
const originalHTML = element.innerHTML;
element.style.borderColor = '#00FF88';
setTimeout(() => {
element.style.borderColor = '#333';
}, 1000);
} catch (err) {
console.error('Copy failed:', err);
}
document.body.removeChild(textarea);
}
// Canvas visualizations
function initializeCanvases() {
// Structure Canvas - Component visualization
const structureCanvas = document.getElementById('structureCanvas');
if (structureCanvas) {
const ctx = structureCanvas.getContext('2d');
drawStructureVisualization(ctx, structureCanvas);
}
// Context Canvas - Information layers
const contextCanvas = document.getElementById('contextCanvas');
if (contextCanvas) {
const ctx = contextCanvas.getContext('2d');
drawContextVisualization(ctx, contextCanvas);
}
// Refinement Canvas - Improvement curve
const refinementCanvas = document.getElementById('refinementCanvas');
if (refinementCanvas) {
const ctx = refinementCanvas.getContext('2d');
drawRefinementVisualization(ctx, refinementCanvas);
}
// Techniques Canvas - Pattern comparison
const techniquesCanvas = document.getElementById('techniquesCanvas');
if (techniquesCanvas) {
const ctx = techniquesCanvas.getContext('2d');
drawTechniquesVisualization(ctx, techniquesCanvas);
}
}
function drawStructureVisualization(ctx, canvas) {
canvas.width = canvas.offsetWidth;
canvas.height = canvas.offsetHeight;
const components = [
{ name: 'Role', color: '#0066FF', y: 80 },
{ name: 'Context', color: '#00D9FF', y: 160 },
{ name: 'Task', color: '#FFB800', y: 240 },
{ name: 'Format', color: '#00FF88', y: 320 }
];
const centerX = canvas.width / 2;
// Draw connecting lines
ctx.strokeStyle = '#333';
ctx.lineWidth = 2;
ctx.beginPath();
ctx.moveTo(centerX, 60);
ctx.lineTo(centerX, 340);
ctx.stroke();
// Draw components
components.forEach(comp => {
// Circle
ctx.fillStyle = comp.color;
ctx.beginPath();
ctx.arc(centerX, comp.y, 30, 0, Math.PI * 2);
ctx.fill();
// Text
ctx.fillStyle = '#FFFFFF';
ctx.font = 'bold 14px sans-serif';
ctx.textAlign = 'center';
ctx.fillText(comp.name, centerX, comp.y + 5);
});
// Title
ctx.fillStyle = '#00D9FF';
ctx.font = 'bold 18px sans-serif';
ctx.textAlign = 'center';
ctx.fillText('Prompt Structure Components', centerX, 30);
}
function drawContextVisualization(ctx, canvas) {
canvas.width = canvas.offsetWidth;
canvas.height = canvas.offsetHeight;
const layers = [
{ name: 'Task Only', width: 100, color: '#FF6B35' },
{ name: '+ Basic Context', width: 200, color: '#FFB800' },
{ name: '+ Full Context', width: 350, color: '#00FF88' }
];
const startY = 100;
const layerHeight = 60;
const spacing = 30;
layers.forEach((layer, index) => {
const y = startY + (index * (layerHeight + spacing));
// Draw rectangle
ctx.fillStyle = layer.color + '44';
ctx.fillRect(50, y, layer.width, layerHeight);
// Draw border
ctx.strokeStyle = layer.color;
ctx.lineWidth = 2;
ctx.strokeRect(50, y, layer.width, layerHeight);
// Draw text
ctx.fillStyle = '#FFFFFF';
ctx.font = '14px sans-serif';
ctx.textAlign = 'left';
ctx.fillText(layer.name, 60, y + 35);
});
// Title
ctx.fillStyle = '#00D9FF';
ctx.font = 'bold 18px sans-serif';
ctx.textAlign = 'left';
ctx.fillText('Context Layers: From Minimal to Rich', 50, 50);
}
function drawRefinementVisualization(ctx, canvas) {
canvas.width = canvas.offsetWidth;
canvas.height = canvas.offsetHeight;
const points = [
{ x: 100, y: 300, label: 'Iteration 1' },
{ x: 300, y: 200, label: 'Iteration 2' },
{ x: 500, y: 120, label: 'Iteration 3' },
{ x: 700, y: 80, label: 'Final' }
];
// Draw curve
ctx.strokeStyle = '#0066FF';
ctx.lineWidth = 3;
ctx.beginPath();
ctx.moveTo(points[0].x, points[0].y);
for (let i = 1; i < points.length; i++) {
const xMid = (points[i - 1].x + points[i].x) / 2;
ctx.quadraticCurveTo(xMid, points[i - 1].y, points[i].x, points[i].y);
}
ctx.stroke();
// Draw points
points.forEach((point, index) => {
ctx.fillStyle = '#00D9FF';
ctx.beginPath();
ctx.arc(point.x, point.y, 8, 0, Math.PI * 2);
ctx.fill();
// Labels
ctx.fillStyle = '#FFFFFF';
ctx.font = '12px sans-serif';
ctx.textAlign = 'center';
ctx.fillText(point.label, point.x, point.y + 25);
});
// Y-axis label
ctx.save();
ctx.translate(30, 200);
ctx.rotate(-Math.PI / 2);
ctx.fillStyle = '#888';
ctx.font = '14px sans-serif';
ctx.textAlign = 'center';
ctx.fillText('Quality', 0, 0);
ctx.restore();
// X-axis label
ctx.fillStyle = '#888';
ctx.font = '14px sans-serif';
ctx.textAlign = 'center';
ctx.fillText('Iterations', canvas.width / 2, canvas.height - 20);
// Title
ctx.fillStyle = '#00D9FF';
ctx.font = 'bold 18px sans-serif';
ctx.textAlign = 'center';
ctx.fillText('Prompt Improvement Through Iteration', canvas.width / 2, 30);
}
function drawTechniquesVisualization(ctx, canvas) {
canvas.width = canvas.offsetWidth;
canvas.height = canvas.offsetHeight;
const techniques = [
{ name: 'Basic', score: 40, color: '#FF6B35', x: 150 },
{ name: 'Chain-of-Thought', score: 75, color: '#FFB800', x: 350 },
{ name: 'Few-Shot', score: 85, color: '#00D9FF', x: 550 },
{ name: 'Combined', score: 95, color: '#00FF88', x: 750 }
];
const maxHeight = 250;
const barWidth = 80;
const baseY = 320;
techniques.forEach(tech => {
const barHeight = (tech.score / 100) * maxHeight;
// Draw bar
ctx.fillStyle = tech.color + '88';
ctx.fillRect(tech.x - barWidth / 2, baseY - barHeight, barWidth, barHeight);
// Draw border
ctx.strokeStyle = tech.color;
ctx.lineWidth = 2;
ctx.strokeRect(tech.x - barWidth / 2, baseY - barHeight, barWidth, barHeight);
// Score text
ctx.fillStyle = '#FFFFFF';
ctx.font = 'bold 16px sans-serif';
ctx.textAlign = 'center';
ctx.fillText(tech.score + '%', tech.x, baseY - barHeight - 10);
// Technique name
ctx.font = '12px sans-serif';
ctx.fillText(tech.name, tech.x, baseY + 25);
});
// Title
ctx.fillStyle = '#00D9FF';
ctx.font = 'bold 18px sans-serif';
ctx.textAlign = 'center';
ctx.fillText('Technique Effectiveness Comparison', canvas.width / 2, 30);
// Y-axis
ctx.strokeStyle = '#333';
ctx.lineWidth = 2;
ctx.beginPath();
ctx.moveTo(80, 70);
ctx.lineTo(80, baseY);
ctx.stroke();
// Y-axis label
ctx.fillStyle = '#888';
ctx.font = '12px sans-serif';
ctx.textAlign = 'right';
ctx.fillText('0%', 75, baseY + 5);
ctx.fillText('50%', 75, baseY - 125);
ctx.fillText('100%', 75, baseY - 250);
}
// Checklist interaction
document.addEventListener('click', function(e) {
if (e.target.tagName === 'LI' && e.target.parentElement.classList.contains('checklist')) {
e.target.classList.toggle('checked');
}
});
// Initialize on load
window.addEventListener('load', init);
// Handle window resize for canvases
window.addEventListener('resize', function() {
initializeCanvases();
}); |