For years, the interaction between a human and a large language model has followed a predictable rhythm: a prompt is entered, a cursor blinks in anticipation, and a block of text appears. This is the era of the chatbot, a sophisticated oracle that provides information but requires the user to execute the actual labor. However, a fundamental shift is occurring in the developer community this week. We are moving away from models that simply tell us how to do something and toward agents that actually do it. The latest benchmark in this evolution is not a coding test or a math puzzle, but a creative production challenge: the autonomous creation of a music video.
To test this capability, researchers pitted two heavyweight models, Claude Fable 5 and GPT-5.6 Sol, against a complex creative brief. The task was to produce a music video for Mark Ronson and Bruno Mars' hit Uptown Funk. The AI agents were not given a step-by-step manual; instead, they were provided with a set of tools, a specific budget, and the goal of a finished product. The experiment was run four times across two different budget tiers, $25 and $100, to see how financial constraints influenced the AI's decision-making and creative output.
The Architecture of the Agent Harness
The success of this experiment relied on a specialized control mechanism known as an agent harness. This is not a simple prompt but an autonomous loop that allows the AI to act as a project manager, researcher, and editor simultaneously. The harness provides the model with six distinct tools, enabling it to move beyond text generation into the realm of active software manipulation. The workflow follows a recursive cycle: the AI first researches available video generation models, determines which tool is best suited for a specific scene, generates the clips, reviews the visual output, and finally uses ffmpeg to cut and assemble the final sequence.
By utilizing ffmpeg, a powerful command-line tool for handling multimedia files, the agents can perform precise edits, concatenate clips, and synchronize visuals with audio without human intervention. This transforms the AI from a writer into a technician. The process is not a linear path from text to video, but a circular one where the AI monitors its own progress and makes corrections based on the results it sees. This entire framework has been released to the public as an open-source project, allowing any developer to experiment with different models or songs.
Those interested in deploying this system can find the full source code at github.com/hershalb/music-video-arena. The repository allows users to swap out the underlying LLM, adjust the budget, and provide their own audio files to see how different models handle the pressure of a production deadline.
To get the environment running, users can follow the standard installation process:
npm install
cp .env.example .env # then fill in keysFor a basic test with a $25 budget, the following command is used:
npm start -- --song /path/to/song.mp3 --budget 25For a more detailed production with specific metadata and lyrics, the command expands to include the artist's style and a transcript:
npm start -- --song ~/Downloads/music_video_arena.mp3 --budget 25 \
--title "Uptown Funk" --artist "Mark Ronson ft. Bruno Mars" \
--about "Upbeat retro funk-pop, ~115 BPM, flashy and fun. Think slick 70s/80s style, gold chains, dancing, bright colors, swagger." \
--transcript ~/Downloads/uptown-funk.lrcThe Strategy Gap and the Token Economy
When the budget increased to $100, the divergence in behavior between Claude Fable 5 and GPT-5.6 Sol became stark. Claude Fable 5 adopted a high-volume approach, spending more of its budget to generate a larger quantity of video clips. Its primary strategy was a direct text-to-video pipeline, where descriptions were converted immediately into motion. While this resulted in a high volume of content, it revealed a significant inefficiency in how the model handled its internal processing costs. Claude Fable 5 spent between $16.99 and $25.05 on tokens alone, meaning that 30% to 40% of the total budget was consumed by the AI's internal thinking process before a single frame of video was even rendered.
GPT-5.6 Sol, by contrast, demonstrated a sophisticated ability to adapt its technical pipeline based on the available budget. In the $25 trial, GPT-5.6 Sol avoided the expensive text-to-video route. Instead, it implemented an image-to-video pipeline, first generating high-quality still images and then animating them. This two-step process is often more controllable and cost-effective. When the budget was raised to $100, the model did not simply make more of the same; it evolved its strategy to mix three different video models within a single execution, optimizing for variety and quality rather than sheer volume.
The most striking difference appeared in the token economy. Despite handling a similar volume of complex instructions and research tasks, GPT-5.6 Sol kept its token costs between $3 and $4. This represents a massive disparity in operational efficiency. In a real-world production environment, where an agent might be managing hundreds of assets across a full-length feature or a marketing campaign, a model that consumes 40% of its budget on tokens is a liability, whereas a model that maintains a lean overhead is a scalable asset.
This contrast highlights a critical realization in the development of AI agents: the ability to generate a result is less important than the ability to strategize the path to that result. Claude Fable 5 acted as a talented but expensive producer who throws money at the problem to ensure coverage. GPT-5.6 Sol acted as a technical director who optimizes the pipeline to maximize the value of every dollar spent.
As we move toward a future where AI agents handle end-to-end workflows, the metric of success is shifting from accuracy to efficiency. The value of an agent is no longer measured by the quality of its answer, but by the ratio of its operational cost to the final utility of the work it completes.
This transition marks the end of the era where we wait for a blinking cursor to give us a plan. We have entered the era of the AI worker, where the primary skill of a model is its ability to wield external tools like ffmpeg to turn a budget into a finished product.




