r/ArtificialInteligence

▲ 10 r/ArtificialInteligence+1 crossposts

AI art makes me wonder what we actually value in art

A while ago, I used to write short posts about art online.

I didn’t think about art in a very academic way. I just felt that art shouldn’t only belong to rich people, museums, or people with professional training.

Sometimes a song, a painting, or even a simple object in daily life can comfort someone, especially when life feels difficult.

Now AI can generate images so fast, and some of them really do look beautiful.

But this makes me a bit confused.

If everyone can make beautiful images with AI, then maybe beauty itself is not enough anymore.

Maybe the more important question becomes: what is the person trying to say?

Did they have a real feeling behind it?
Did they make a real choice?
Or did they just type a prompt and pick the most impressive result?

I don’t think AI will destroy art. But I do think it may make us rethink what counts as art.

Maybe there will be different levels of AI art in the future. Some will just be decoration. Some will be made for attention. Some may still carry real human experience, even if AI helped make it.

I’m still not sure where the line is.

Can AI art still feel real to you if the human behind it has a strong idea? Or does the use of AI already make it feel less valuable?

reddit.com
u/biliby8172 — 6 hours ago
▲ 51 r/ArtificialInteligence+1 crossposts

Google Shifts to AI Search, Heralding Major Change in How People Use the Internet.

For many people, Google’s search box is the lobby of the internet. Simple and intuitive, it has shaped how people navigate online for nearly three decades and was the driving force behind the company’s meteoric rise. 

Now, it is set to undergo a radical transformation to fully incorporate artificial intelligence.

The company announced on Tuesday that the search bar will be “completely reimagined with AI,” calling it the biggest change in more than 25 years.

time.com
u/coinfanking — 8 hours ago

I read more than ever but understand less

I've noticed information isn't the same as understanding. I can read 50 articles in a day and get less out of it than if I'd read one and actually thought about it.

I think understanding needs a pause. A bit of time for my brain to fit the idea into what I already know. But I don't pause anymore. A war, a meme, and a market crash all hit me in the same scroll in 30 seconds.

AI feels like it's speeding this up for me. More summaries, more shortcuts, less actual thinking. Does anyone else feel this or am I overthinking it?

reddit.com
u/fl_1ck3r — 6 hours ago
▲ 271 r/ArtificialInteligence+3 crossposts

I've been building multi-step prompt chains for about 18 months. Workflows where the output of one prompt becomes structured input for the next prompt, which feeds the next, which feeds the next. The kind of thing that takes a vague input ("I have a business idea") and produces a deliverable output ("here's a positioning statement, market analysis, and brand foundation") through five or six prompts run in sequence.

For most of those 18 months my chains underperformed. Each individual prompt was solid. The chain as a whole produced output that drifted, lost focus, or contradicted itself between steps. I kept improving the individual prompts. The chain didn't get noticeably better.

The problem wasn't the prompts. It was that I was treating the chain as a sequence of independent prompts when it's actually a single engineering artifact with multiple stages. Different problem entirely.

The structural difference between independent prompts and chained prompts:

An independent prompt has one job: produce a useful output from a known input. The input is whatever you paste in. The output is whatever the user does next with it. The prompt doesn't care about either.

A chained prompt has two jobs: produce a useful output, and produce that output in a structure the next prompt in the chain can reliably consume. The output isn't for the user - it's for another prompt. That changes how it has to be designed.

Most chain failures happen at the join points. Prompt 1 produces output that's useful for a human reading it but doesn't have the structure prompt 2 needs. Prompt 2 has to either guess at the structure or do extra parsing work, which degrades its own output. By prompt 4 or 5, you've accumulated three layers of degradation and the final output is meaningfully worse than if you'd written one big prompt that did everything in one shot.

The four engineering principles I now apply to any chain:

1. Output schema, not output style. Each prompt in the chain has to produce output in a parseable structure, not just a readable structure. This usually means specifying the output format explicitly: a labelled section structure, a markdown table with named columns, a numbered list with consistent fields. The next prompt knows where to find each piece of information because the structure is enforced.

Independent prompt output: "Here's a positioning statement for your business..." Chained prompt output:

## POSITIONING STATEMENT
[one sentence]

## TARGET AUDIENCE
[paragraph]

## CORE DIFFERENTIATOR
[paragraph]

## ASSUMPTIONS REQUIRING VALIDATION
[bullet list]

The second version is parseable by prompt 2. The first isn't reliably.

2. Explicit handoff instructions. Each prompt should explicitly state what its output will be used for downstream. Not because the model needs to know, but because the discipline of writing it forces you to design the output for the actual use case rather than for general usefulness.

Adding a single line - "This output will be passed to a market research prompt next, which will use the target audience and differentiator sections to identify competitive positioning gaps" - changes the output meaningfully. The model produces the audience and differentiator sections with more analytical sharpness because it knows they'll be analysed, not just read.

3. Failure mode propagation. When prompt 1 fails or produces low-quality output, prompt 2 doesn't know it's working with bad input. It just produces output one tier worse than its input. By prompt 5 the failure has compounded silently.

Chains need explicit failure handling at each join. Each prompt should check that its input has the structure it expects and flag if it doesn't. If prompt 2 expects a "TARGET AUDIENCE" section and the input doesn't have one, prompt 2 should say so rather than improvising. This catches degradation at the source rather than letting it propagate.

4. State that doesn't drift. Long chains tend to drift away from the original brief because each prompt only sees the immediate previous output, not the original input. By prompt 5, the work has often quietly diverged from what the user originally asked for.

The fix is anchoring. Every prompt in the chain after prompt 1 should receive both the previous output and the original brief, with explicit instruction not to deviate from the original brief unless the previous prompt's analysis explicitly justifies it. This adds tokens but preserves coherence over the length of the chain.

A specific example of these principles in action:

I built a chain for taking a rough business idea through to a usable founding document. Six prompts: niche validation, positioning, market research, brand foundation, visual concepts, pitch outline. The chain works because:

  • Each prompt outputs in a labelled section structure the next prompt parses by section name
  • Each prompt's instructions explicitly state what downstream prompts will do with its output
  • Each prompt validates the structural integrity of its input before processing
  • The original brief is re-passed with each step, with explicit anchoring to prevent drift

The full chain takes a 30-second input and produces a 4-page founding document. The same six prompts written as independent prompts and run in sequence produce a document that's structurally similar but consistently lower quality - the audience definition drifts between steps, the differentiator gets reframed, the pitch outline doesn't match the positioning.

Why this matters more than it sounds:

Most prompt engineering content focuses on single-prompt optimisation. The economic impact of well-engineered chains is much larger because chains can replace whole workflows that previously needed human coordination between stages. A six-prompt chain that runs reliably is worth more than 60 individually-excellent prompts run by hand, because the human coordination cost between independent prompts is enormous compared to the marginal output difference.

The chains that actually run reliably in production aren't sequences of optimised individual prompts. They're single engineering artifacts where the join points are designed at least as carefully as the prompts themselves.

If you want to see a working example of a chain engineered with these principles, I built a six-prompt sequence for taking an idea to a business founding document. Each prompt is structured to feed the next, with the join points designed explicitly. Free, signup-gated: https://www.promptwireai.com/businesswithai

Worth running it on a real idea you have rather than a hypothetical, because the chain's reliability shows up most clearly when the input is specific.

u/Professional-Rest138 — 12 hours ago

Meta just fired 7,800 employees and used their daily work to train AI

https://preview.redd.it/sv7v4xmpvf2h1.png?width=1600&format=png&auto=webp&s=7ad35ea2d2d03f3bac1a8d16e04d5905de3679ef

So Mark Zuckerberg admitted during a staff meeting that Meta was actively training their internal AI models on the work of people they were already planning to fire. A leaked audio recording published by More Perfect Union on Wednesday ended up perfectly coinciding with the actual start of them letting 7,800 people go.

Back in April Meta made it official that they were cutting 10% of their workforce. They gave the staff a one month notice period but kept the names of who was actually getting the axe a secret until the last minute. In the leaked tape Zuckerberg goes into detail about how they decided to skip hiring outside contractors to save cash. Instead they just used the expertise of their own highly skilled employees to feed the models. His reasoning was that Meta employees have a much higher average intelligence than standard contractors anyway. Because of that, having the models learn to write code by directly observing the company's own engineers every day was way faster and more effective than other industry alternatives.

Seeing major tech companies train next gen AI systems on the data and skills of their own workforce is a pretty clear indicator of current strategies. It points directly at them slashing operating costs and actively working to replace human roles with artificial intelligence.

reddit.com
u/andrewaltair — 13 hours ago

An observation on the subway that changed how I think about voice AI

I was traveling in China recently and noticed something interesting on the subway. Older people using their phones almost always hold the screen and talk into it. Younger people just type.

At first I thought the older folks couldn't type well. Turns out that's not it. A lot of them just prefer talking. A Chinese friend told me WeChat blew up early on partly because of its walkie-talkie style voice messages.

It got me thinking. Why do people seem to love voice so much once they try it?

Then it hit me. Humans have been speaking for 100,000 years. Writing is maybe 5,000 years old. Mass literacy is a couple hundred. Typing is the historical exception. Talking is the default.

This is already happening for human to human communication. Tools like Wispr Flow have a lot of heavy users now. You say something, it becomes text, you send it. The end product is still text, but the input side is voice.

What I'm more curious about is the next step. Voice for talking to machines.

For the last 100 years we've talked to computers with numbers, text, code. Siri-era voice could only trigger preset commands. LLMs change that. You can say something vague and an agent can break it down and act on it. Products like Owlfy are doing this for desktops. Rabbit pitched the same idea years ago with their "Large Action Model." They didn't pull it off, but the direction made sense.

If this actually works out, it's the third big shift in how people use computers. Command line, then GUI, then just talking. Each shift made computers usable for way more people.

Of course I could be totally wrong. Voice has real downsides. It's hard to skim, slower than reading, awkward in public. Picture an office where everyone is talking to their screen. Kind of weird.

So I'm curious. When you're interacting with a computer or a system, do you reach for voice or keyboard and mouse first? What's the difference for you?

reddit.com
u/TheseSir8010 — 12 hours ago
▲ 0 r/ArtificialInteligence+2 crossposts

Okay so I tried Codex (twice) after Opus 4.7 got nerfed - hated it, now I understand.

If your only tool is a hammer, you tend to see every problem as a nail. Does anyone agree? I've found that Claude code is good for speed but when I have a complex issue Codex really does be more thoughtful.

u/theonejvo — 11 hours ago

Unpopular opinion: Students who are protesting AI now knew they weren't market ready

Let's be honest: many students protesting AI taking entry-level jobs now were the same students who spent their degrees quietly using AI to complete assignments. Just digging through Reddit, you can find posts of them bragging how they finished their assignments with honors despite not doing the work themselves. Multiply that across 3-4 years and you have a whole generation of graduates holding a credential certifying skills they never actually built.

Now employers have figured out that AI can do the entry-level work juniors used to be hired for. In fact, it can do it better than the recent grads who can't reliably offer anything beyond what the AI already does, because their "training" was mostly supervising AI outputs instead of producing original work.

To be clear: this isn't all on students. Universities failed to update assessments. Professors also failed to adapt to the new technology and clung to their old ways. The result? A generation of young people who are unfit for the job market and need to be restrained.

reddit.com
u/thhvancouver — 16 hours ago
▲ 305 r/ArtificialInteligence+1 crossposts

AI is deteriorating in realtime

SOURCES & REFERENCES

Shumailov et al. — "AI Models Collapse When Trained on Recursively Generated Data." Nature, July 2024. https://www.nature.com/articles/s41586-024-07566-y
Villalobos et al. (Epoch AI) — "Will We Run Out of Data? Limits of LLM Scaling Based on Human-Generated Data." International Conference on Machine Learning, 2024. https://arxiv.org/abs/2211.04325
OpenAI — o3 and o4-mini System Card (April 2025). PersonQA hallucination benchmark.
Gartner — Forecast on synthetic training data, projecting 60% of training corpora by 2024.
Duke University Library — Generative AI Student Survey (January 2025).
DeepMind — AlphaZero (chess/Go from self-play); AlphaGeometry (Olympiad-level geometry from synthetic data).
Ed Zitron — "The Truth About the AI Bubble & The Software Decline." Tech Report interview. https://www.wheresyoured.at/
Gary Marcus — "How an AI feedback loop threatens to break ChatGPT." Tech Report. https://garymarcus.substack.com/

u/Downtown-Path-2477 — 22 hours ago

Google just dropped Gemini 3.5 Flash and the price hike is pretty insane.

https://preview.redd.it/w9vsvcvbwf2h1.png?width=640&format=png&auto=webp&s=0794afc6154be4b284ce85e686674349c64f2dbc

So Google announced Gemini 3.5 Flash this week. I was looking over the Artificial Analysis numbers and the cost jump is pretty crazy. It's basically 5.5 times more expensive to run than the older 3.0 Flash model.

They tripled the input token price to $1.50 per million, and output tokens are sitting at $9.00 now. The weirdest part is that 3.5 Flash takes a lot more steps to handle complex tasks. It averages around 49 steps compared to just 23 for 3.1 Pro, so in practical terms it actually ends up being about 75% more expensive to run than the heavier Pro model. It is really fast though, pumping out 280 tokens a second which is a 70% speed bump. On the benchmark side it scored a 55 on the IQ index, beating out Grok 4.3 and Claude Sonnet 4.6, but its coding is still kind of weak at a 45. At least hallucinations dropped by 31 points down to 61%. Honestly this seems to be a trend everywhere right now. OpenAI's GPT-5.5 is 50 to 90% more expensive than their last one, and Claude Opus 4.7 is up by 30 to 40% too.

Basically the whole market is shifting towards these autonomous multi-step systems and they just eat up massive amounts of compute. Definitely going to force everyone to rethink their API budgets and how they handle AI spending going forward.

reddit.com
u/andrewaltair — 13 hours ago
▲ 913 r/ArtificialInteligence+1 crossposts

$300M on Anthropic tokens, zero new engineers hired - Salesforce is the clearest case study of where this is going

Been watching this Salesforce situation develop for a while. Benioff confirmed on the All-In podcast that the company will spend around $300 million on Anthropic tokens this year, mostly for internal coding work.

What's interesting isn't just the number - it's the whole picture:

  • Hired zero software engineers since January 2025
  • AI now handles 30 to 50% of overall company workload
  • Cut support staff from 9,000 to 5,000 using agents
  • Agentforce just hit $800M ARR, up 169% year on year

The money that used to go into payroll expansions is now going into token spend. That's a structural shift, not a cost-cutting round.

Source: https://www.techloy.com/marc-benioff-says-salesforce-will-spend-300-million-on-anthropic-tokens-this-year/

Full breakdown here if useful: https://youtu.be/WmZyStkMM1M

Is Salesforce the template everyone else follows, or is this specific to companies that already have AI-native products to sell?

u/MaJoR_-_007 — 1 day ago

An OpenAI model has disproved a central conjecture in discrete geometry

Erdos problem 90 has been resolved. While at this point more than a dozen Erdos problems have been solved using AI, most are considered trivial. But problem 90 is different. It went unsolved for 80 years, resisting the attempts of generations of mathematicians despite its simple setup.

openai.com
u/alphacolony21 — 20 hours ago
▲ 165 r/ArtificialInteligence+1 crossposts

[OC] I built a tracker of AI company spend vs revenue. Everyone is losing A LOT of money (except Nvidia).

I Mainly built this as I got tired of conflicting headlines about AI profitability, and the huge amounts of money that was being spent on AI.
Site: https://isaiprofitable.com/

u/MikeyPlays123 — 1 day ago
▲ 96 r/ArtificialInteligence+46 crossposts

Most people who followed $CYDY remember March 30, 2021. The FDA publicly stated that CytoDyn's claims about leronlimab were "misleading and not supported by the data", no benefit was shown in COVID-19 treatment trials. The stock dropped 25%+ that day.

What happened afterward was a class action lawsuit covering investors who held $CYDY between March 27, 2020 and March 30, 2022.

A $500,000 settlement has been reached and terms are now submitted to the court for approval.

Who qualifies?

Anyone who held $CYDY during the class period and suffered losses from the alleged misrepresentations about leronlimab's effectiveness for HIV and COVID-19.

Can I still apply?

Yes, you can submit your application now and it will be processed once claims filing officially opens after court approval.

If you were damaged by this don't forget to check your eligibility. GL!

u/JuniorCharge4571 — 24 hours ago
▲ 1 r/ArtificialInteligence+1 crossposts

What do you expect from AI memory?

I am writing this out as a scenario, because what I am curious about is not what AI can technically do, but what people would actually expect it to do.

AI agent use pattern example:

month 1: we talk about wildlife, birds, animals, plants, and things like that
month 2: we talk about music and playing the violin
month 3: we talk about billing software compatibility and computational requirements
month 4: we talk about family members and communication tricks to use

month 5: i want to talk about exercising and the first thing I say to it is just: "exercise"

No question attached.

Understanding that we all know AI always tries to reply, what would you expect the response from the AI agent to be in the above scenario for month 5?

This can be what you personally want AI tooling to do but cant yet, what you feel most AI agents will reply with, or both.

I am not asking what the “right” answer is. Just for your thoughts on this.

reddit.com
u/Realistic-Actuator60 — 17 hours ago