Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

I've been using Ring-2.6-1T on OpenRouter for my documentation pipeline this week. My usual flow: I dump a raw codebase or a long spec doc into the model and ask it to generate structured docs, flag inconsistencies, and draft a changelog. With other models, I was splitting this into...

48,658 Aufrufe • vor 2 Monaten •via X (Twitter)

0 Kommentare

Keine Kommentare verfügbar

Kommentare vom Original-Post werden hier angezeigt

Ähnliche Videos

With the release of Kling AI 2.6, I was eager to put it up against one of its arch-rivals….Google Flow Veo 3.1. I ran four separate tests. First, I tested their ability to generate consistent and stable action shots. Second, I tested camera movement in a crowded scene. Third, I tested their ability to generate consistent facial details and emotion. Fourth, I wanted to see how well they can generated an interaction between two characters. Prompt 1: camera tracking shot, wide-shot. The camera tracks above as two nights ride on horses through a forest. The horses a galloping fast. The camera is tracking the knights from above. Prompt 2: Slow camera push in on a man eating Ramen at a Ramen house in Japan. The alley street is busy with people. Prompt 3: Close-up shot of a man on a sailboat. The man has a scared look on his face. After a short pause, the man says, "I'm gonna need a bigger boat” Prompt 4: Static camera. A man picks up a cookie from a plate and takes a bite. His dog looks up at him; eagerly wanting a bite of the cookie. The man turns, looks at the dog, and says, "no cookies for you mister” Verdict🏆: To be honest, I was surprised by Kling 2.6. While Veo 3.1 outperformed Kling 2.6 in the close-up shot test, it slightly underperformed in every other test. In the Veo 3.1 outputs, objects would randomly appear and camera movements were abrupt or didn’t adhere to the prompt. Don’t get me wrong, Kling 2.6 definitely had its flaws (its audio was quieter and often mismatched the prompt). That said, I was impressed with Kling 2.6 more than I imagined I would be. Although a somewhat small lead, I would give Kling 2.6 the slight advantage for this round of tests.

Curious Refuge

24,695 Aufrufe • vor 8 Monaten

Jordan Spieth shot a bogey free 62 yesterday, with 6 birdies in a row, and a closing 9 of 29, to climb into the top 10 of the CJ Cup Byron Nelson. After the round he said he feels as good as he has in 9 years and then went into more detail about why: “It's physically and my mechanics. I got pretty off for a long time. I've been trying to build it back, and then I'd compensate and do what worked. “This last off-season I said no more compensating because, to be consistent, I've got to get it back to a certain place, and it's been work from then to try to get there. It's all in mechanics and health.” He then detailed what part of his game worked well in the 62: “It was putting today. I've been driving the ball the best of my life, and I drove it horribly today, like really badly. But putting was -- to go to your actual question, putting was the best. “I felt fluid with it. I felt like I -- in what I've been trying to do, I've been trying to put it all together. I know what needs to happen, but putting it all together into a fluid stroke and then being able to be outwardly focused has been the goal. “I felt like last night I did a really good job out here of that being the goal, find that, and then carry it into this morning and then trust it on the course. “Frankly, I mean, I told Michael -- I've been telling Michael for a while. I just feel like one lips in instead of lips out, and I feel like the lid comes off. I lipped out a few yesterday. I had one on No. 10 go across the lip today, but then the one on No. 1 could have been short and fell in. It was like, oh, wow, there is a hole there. “Sometimes I've certainly shown that I can get streaky with it and was able to kind of get on the right side of that today.” Jordan Spieth PGA TOUR

Flushing It

15,564 Aufrufe • vor 2 Monaten

I asked Garry Tan how to use meta prompting to get better at AI: "My partners at YC Jared Friedman and Pete Koomen showed me how to do this. You can take almost anything that you do all the time and just drop it into a context window. And then say, “Here’s a bunch of inputs and outputs." And maybe you also add a bunch of notes. And then you tell it, “Write me a prompt that can act as an agent that takes this input and makes this output over here.” You can do this for almost any type of knowledge work. And you can even introspect. "What are things you notice that I did to convert this from the input to the output?”. And then you can just start using the prompt. Initially, it’s going to suck. Because it’s just not that smart yet. But what’s funny is now, I also use it to Iterate my writing. You can be very direct, "I would never say that", "Don’t say it like this", or "Oh, you used the long word there, use the short word". Just speak to it conversationally. And then when you're happy with the output, you can use that new output to make a new prompt. "Based on this conversation, give me a better initial prompt that incorporates all the things we talked about." And you can do this with literally everything. And in theory, there’s so much it applies to that people do day-to-day. You could use it for tweets. You could use it for editing podcasts. You can use it for pretty much everything. I have a folder of prompts that I use all the time. My YouTube prompt is on v27 or something. I'll go through this process with all the different max models. I'll use GPT 5.2 Pro. I’ll use Grok. I'll use Claude. Then, I’ll take all the outputs from all the models and put them into Claude and say "Here’s my prompt, here’s the output from four LLMs, including yourself. Rate each response and tell me what the pros and cons of each approach are." And I usually say "give it to me in numbered form". And then you can agree with one, disagree with two, tell it three is this or that. And then after that, you say given all of this, synthesize it."

The Peel

51,632 Aufrufe • vor 5 Monaten

New Short Course: Getting Structured LLM Output! Learn how to get structured outputs from your LLM applications in this course, built in partnership with .txt, and taught by Will Kurt, a Founding Engineer, and , Developer Relations Engineer. It's challenging for software to automatically parse through an LLM's freeform text outputs. Structured outputs—like JSON—solve this by converting natural language into consistent, clear, data that a machine can read and process. This course teaches you how to generate structured outputs while building several use cases, including a social media analysis agent. You’ll learn about structured outputs and efficient ways to generate outputs in your defined schema or format. You’ll begin by using structured output APIs, then use re-prompting libraries like “instructor” to generate structured output. Finally, you’ll learn how constrained decoding works; this is a very clever technique in which constraints are applied on each subsequent token generated, blocking any tokens that don’t fit your defined schema. In detail, you’ll: - Learn why structured outputs are important, how they allow for scalable software development, and the different approaches to generate them, including vendor-provided APIs, re-prompting libraries, and structured generation. - Build a simple social media agent using OpenAI’s structured output API, learn how to define a model's desired structured output using Pydantic, and perform basic programming with your outputs, such as importing structured data into a data frame using pandas. - Learn how to use the open-source library "instructor," which checks the structured output of the model and re-prompts the model until it validates the desired output, and explore the limitations of this approach. - Understand how structured generation by the “outlines” library works by modifying LLM logits, on a per-generated-token basis based on the desired format, to give a particular output structure. - Learn how regular expressions, which outlines works with, are represented as finite-state machines, and how they can be used to develop a range of structured outputs beyond JSON. By the end of this course, you’ll have broadened your knowledge of the approaches you can use to get structured outputs from your LLM applications. Please sign up here:

Andrew Ng

89,792 Aufrufe • vor 1 Jahr