标签:#c
找到 25634 篇相关文章
FCC approves test of space mirror to light night sky
https://www.nytimes.com/2026/07/10/climate/fcc-space-mirror.... https://www.pcmag.com/news/fcc-approves-reflect-orbitals-gia...
A Jupiter-size planet that escaped its star's death
It's unclear how the planet avoided its star's bloated red giant stage.
The perfect kit for all your tiny repairs
Hi, friends! Welcome to Installer No. 135, your guide to the best and Verge-iest stuff in the world. (If you're new here, welcome, crank the AC, and also you can read all the old editions at the Installer homepage.) This week, I've been reading about cold plunges and Colson Whitehead and the food truck mafia, […]
Ofcom Wants American Police to Collect Its Speech Fine
Trident – macOS menu-bar utility that remaps trackpad gestures
World-War-Ⅱ-era telephone line still in use in Upper Tanana Valley Alaska (2021)
Overhaul of public lands grazing regulations seeks to cut public involvement
For the first time since 1995, the Bureau of Land Management is rewriting its grazing regulations.
Skylight’s Touchscreen Calendar Got my Whole Family on the Same Page
The Skylight has become the informational and organizational hub of my household. My touchscreen-native kids have also gained more agency over our family activities.
The Earth Is Coated in Supernova Dust
Engineering Peace
Your code is fast – if you're lucky
Samsung Micro RGB R95H Review (2026): Not the Brightest
There’s a new fleet of TVs using new mini and micro RBG display tech, and Samsung’s R95H model isn’t as impressive as it should be.
AI Found a Root Bug in Linux That Everyone Missed for 15 Years
Plus: The Pentagon is training amateurs to become part of its hacker army, a Flock license plate reader error led to cops surrounding a car reviewer, and more.
Microgravity as neurocognitive catalyst for altered consciousness experiences
How Container Networking Works: Building a Bridge Network from Scratch
We Make Lovely Home-Cooked Meals for Ourselves. Why Not Do the Same for Our Dogs?
More dog owners have begun cooking for their canine companions in recent years. When my own dog fell ill, I became part of this growing group.
Show HN: Richest people in the world by wealth creation instead of ownership
I finally counted my tokens before they hatched
Hello, I'm Maneshwar. I'm building git-lrc, a Micro AI code reviewer that runs on every commit. It is...
Pipeline, Flow, or Chain? Picking the Right Tool to Wire LLM Calls Together
In the previous post I argued that agents are great planners and DAGs are great executors . This one is the practical follow-up: when you actually sit down to wire several LLM calls together, what tool do you reach for? Because the moment one prompt's output feeds the next, you've built a workflow — whether you call it that or not. download transcript → summarize → translate (tool) (LLM) (LLM) That tiny pipeline is already the whole problem in miniature: a non-LLM step (fetch a YouTube transcript), then a model call, then another model call that depends on the first. Run it as one giant prompt and you lose visibility; split it into steps and you gain debuggability — at the cost of more calls and more state to manage. The naming trap Half the confusion is vocabulary. The same idea ships under a dozen labels: Name What it whispers Chain sequential, output → input Pipeline stages, data flowing through Flow branches and conditions Workflow general orchestration Agent workflow the model also decides The word sets expectations. "Chain" promises a straight line; "agent workflow" promises the thing might re-plan on you mid-run. Pick the label that matches how much autonomy you're actually handing over — calling a deterministic two-step pipeline an "agent" only invites disappointment. The real choice: library or orchestrator? There are two families of tools, and they solve different problems. LLM-native chaining libraries — LangChain , LlamaIndex Workflows , Azure Prompt Flow , or visual layers like Flowise . These understand LLM-specific concerns out of the box: prompt templating, passing context between steps, token budgets, streaming, retries on a flaky model. General orchestrators — Airflow , Prefect , AWS Step Functions , Azure Logic Apps . These treat each LLM call as just another task in a DAG, and give you the heavyweight reliability machinery: durable state, scheduling, checkpointing, audit trails, human approval. The rule of thumb that falls out of the last post: F