PROMPT REVOLUTION

Hands-On Prompt-Tutorials for Using GenAI in Research and Education

From Text to Interactive Understanding: Exploring Gemini’s Dynamic View on Transformer Models

Generative AI tools are increasingly moving beyond static text responses towards richer, interface-driven explanations. In this post, we explore Gemini’s Dynamic View feature using a conceptually demanding technical question about transformer architectures. Rather than producing a conventional paragraph-style summary, Gemini generated an interactive, visually structured learning environment that allows

by Rebeka Kiss

Setting Up Claude Code for Local File Querying: A Step-by-Step Guide

Claude Code is Anthropic's command line-integrated agent that runs directly on your computer, enabling terminal-based interactions with local files and applications. While the name suggests technical complexity, Claude Code is surprisingly accessible—offering the same conversational interface as chat-based models, but with the ability to execute code and

Benchmarking AI Audio Transcription: How Leading Models Handle English and Hungarian Speech

As audio becomes an increasingly common input for AI assistants, it becomes natural to ask whether these platforms can also transcribe pre-recorded audio accurately. In this benchmark, we tested five leading generative AI models on identical English and Hungarian audio files to assess their transcription accuracy, language support, and practical

Exploring Temperature Settings in Creative Writing: A Haiku Generation Case Study with OpenAI API

Every time you prompt a large language model, you're witnessing the result of thousands of sequential sampling decisions—each token drawn from a probability distribution over the model's vocabulary. In standard chat interfaces, these distributions are sampled with fixed settings that users cannot adjust. But API

Testing PangramLabs for AI Text Detection: Impressive but Imperfect Performance

Can AI detection tools reliably distinguish between human and machine-generated text? In our previous testing, we found that platforms like Originality.ai and ZeroGPT and GenAI models, frequently misclassified both AI and human text. Now, PangramLabs has gained attention with claims of near-perfect accuracy, verified by third-party organizations. In this

Understanding Model Confidence Through Log Probabilities: A Practical OpenAI API Implementation

Log probabilities (logprobs) provide a window into how confident a language model is about its predictions. In this technical implementation, we demonstrate how to access and interpret logprobs via the OpenAI API, using a series of increasingly difficult multiplication tasks. Our experiment reveals that declining confidence scores can effectively signal

Testing Claude Projects' New RAG Feature: Fast Setup, Accurate Retrieval Across 113 Articles

Claude Projects recently introduced a Retrieval-Augmented Generation (RAG) feature that extends its capabilities beyond the standard context window. Unlike traditional approaches that require custom vector databases and API integration, Claude's implementation offers a streamlined, no-code solution for handling large knowledge bases directly within the Projects interface. In this

Building Intelligent Tool Use with the OpenAI API: A Practical Implementation Guide

Tool use (also called function calling) is one of the most powerful capabilities available in modern language models. It allows models to extend beyond text generation by interacting with external systems, databases, or custom logic—making AI agents capable of real-world tasks like checking weather, querying APIs, or running calculations.