r/AILounge

We don’t need your Consent
▲ 0 r/AILounge+2 crossposts

We don’t need your Consent

Ai learn to make art by looking at ton of art pieces. Humans learn to make art by looking at ton of art pieces. Accusing Ai models of stealing is ridiculous.

u/Apart-Reality-4454 — 14 hours ago
▲ 7 r/AILounge+1 crossposts

What’s your "I can’t believe AI actually pulled this off" moment?

We spend a lot of time talking about context windows, limits, and prompt engineering, but every once in a while a model does something so surprisingly smart it just leaves you sitting there staring at the screen.

Could be a crazy complex bug fix, an unbelievable piece of creative writing, or a image/workflow that turned out way better than expected.

What’s the single most impressive thing AI has done for you recently that made you realize how far this stuff has come?

reddit.com
u/NoLocal1168 — 14 hours ago
▲ 7 r/AILounge+1 crossposts

Which AI would you recommend ?

Hi everyone , I'm a small business owner , and I am thinking of using AI to create illustrations for my business.
The illustrations will need to fit a consistent illustration style.
And Basically what I'm trying to do, is to upload jpg images and then remove the background and only do illustrations on the subjects.
I'm looking at the AI models that does these illustrations.

Don't seem to find anything that will consistently stick to one illustration style.
Could you guys recommend which models can fit my requirements ?

Thanks very much in advance!

reddit.com
u/MobileInevitable9481 — 24 hours ago
▲ 31 r/AILounge+1 crossposts

Anyone else feel like AI sentiment completely flipped overnight?

A year ago people were losing their mind saying AI is going to replace every job in two years. Now half the comments online are calling it overhyped garbage that can't even get basic facts right.

The narrative changed so fast. One month it's "AGI is coming next year" and the next month it's "LLMs hit a wall and can't reason for shit."

For people actually using this stuff daily for coding, art, roleplay, or writing... are you seeing real progress or does it feel like we just hit a plateau?

reddit.com
u/NoLocal1168 — 1 day ago

Do you ever use AI to cook?

I like using it for simple things - like grilled chicken with marinade or homemade strawberry shortcake biscuits.

I started losing track of the recipes in all the back and forth of the chat, so I created an app to save the AI recipes alongside imported ones from favorite websites or social media. You can also render as a shopping list by aisle.

Is this something you would use?

reddit.com
▲ 8 r/AILounge+2 crossposts

Which AI do you trust more: ChatGPT, Claude, or Gemini?

I’m doing a small social experiment about how people perceive trust in AI.
Which one do you trust more: ChatGPT, Claude, or Gemini?
More importantly: why?
I’m deliberately not defining what I mean by “trust.” Interpret it however you want.

View Poll

reddit.com
u/Fangtasii — 2 days ago

[Weekly Mega-Thread] Showoff & Discover: What AI Tools Are You Building or Using This Week?

Welcome to the first official r/AILounge Weekly Tool Thread!

From today onwards, this post will go live every week as your dedicated space to share what you’ve built, discover new tools, and clean up our main feed.

For Builders & Creators:

  • Showcase your work: Drop links to your weekend projects, apps, autonomous agents, custom scripts, or full startups.
  • Get real feedback: Share progress, launch updates, demos, or find beta testers within the community.

For Seekers (Looking for a tool?):

  • Ask the community: Tell us what you’re trying to automate (coding, writing, image generation, local LLMs, workflow agents).
  • Get recommendations: Find out what tools are actually worth your time and money.

Quick Rules:

  • Self-promotion belongs HERE: Keep promotional links inside this thread to keep the main subreddit feed quality high.
  • Be constructive: Give the kind of feedback you’d like to receive on your own work.

What are you building or testing this week? Drop your links and questions below!

reddit.com
u/NoLocal1168 — 2 days ago

What AI skill do you think will be valuable 5 years from now?

AI is changing quickly, and many tools we use today may look completely different in a few years. What AI-related skill do you think will still be valuable 5 years from now and why?

What skill would you stat learning today?

reddit.com
u/unnamedpanther155 — 3 days ago
▲ 10 r/AILounge+1 crossposts

LLM recommendations?

Deepseek is going to rise their prices and i wanted to try out other models anyway. So, what are the best LLMs on openrouter? In terms of price+quality

reddit.com
u/NoLocal1168 — 2 days ago

What's the most useless AI feature you've been forced to use this year?

Not looking for hate fests, just curious what's out there. My pick: the AI summary that shows up above search results that's somehow always LESS helpful than just reading the first link. I trust it about as much as I trust the "people also ask" dropdown.

reddit.com
u/DangerousTomorrow782 — 3 days ago
▲ 21 r/AILounge+2 crossposts

Cozy Cyberpunk AI Apartment at Night

finally nailed a style i've been chasing for weeks, sharing the prompt below
took forever to get the color grading right, kept coming out too flat. happy to break down what finally worked if anyone's trying something similar

u/unnamedpanther155 — 3 days ago
▲ 95 r/AILounge+9 crossposts

[Open-Source] Dump your thoughts. Let your notes organize themselves. Ask/chat anytime.

Over the past few weeks I've been building Gray Box — a small, local-first tool that acts as long-term memory for anything I'd otherwise forget (work notes, meeting takeaways, task owners, random ideas, personal stuff too).

The idea is simple:

  1. Capture — dump whatever's on your mind, instantly, no structure required. This step does nothing clever on purpose — it just writes your text to an immutable inbox. Zero chance of losing an idea to a bug or a slow API call.
  2. Organize — on demand, an LLM reads your unprocessed notes and extracts people, projects, tasks, decisions, meetings — then deterministic Python (not the LLM) creates/merges the actual wiki pages and maintains backlinks. The model only reasons; it never touches the filesystem directly.
  3. Ask — query or chat with your knowledge base and get a cited answer pulled only from what you've actually captured. If it doesn't know, it says so — no hallucinated answers.

Why I built it this way:

  • Plain Markdown + YAML frontmatter, no database. Every page is a .md file you can grep, diff, or read in any editor forever. If you stop using Gray Box tomorrow, your knowledge base is just a folder.
  • No vector DB by default. At personal scale (hundreds–low thousands of pages), keyword search + a real link graph (related/backlinks, walked one hop during retrieval) handles almost everything. Embeddings are there if you want better recall, but they're opt-in, not a prerequisite.
  • Immutable inbox. Your raw notes are never edited or deleted by the organizer. If the LLM mis-extracts something, your original words are always still there.
  • Any LLM. Built on LiteLLM, so point it at OpenAI, Anthropic, Gemini, Mistral, or a fully local model via Ollama — one config value.

It also ships with a nice interactive TUI (arrow-key menu, file-import shortcut, workspace switching, live spinner during LLM calls) if you'd rather not memorize CLI flags — that's honestly become my favorite part of the project.

There's also a lightweight local dashboard for browsing your knowledge base, exploring backlinks, visualizing your notes as a graph, and chatting with your captured knowledge—all without leaving your machine.

Repo: https://github.com/Aaryanverma/graybox

pypi: pip install graybox

I'd genuinely love feedback — especially from anyone who's tried the "capture now, structure later" approach with other tools and has opinions on where it breaks down at scale.

It's not trying to be a "real-time collaborative team wiki" or a WYSIWYG notes app — it's aimed at one person's running memory of their own life and work, captured with as little friction as possible.

u/Charming_Group_2950 — 4 days ago

Why does adding more context just produce generic garbage?

I'll give you 5-6 sentences of context, tell you exactly what I want, and still get the same bland safe response I would have gotten from a one line prompt. Looks like adding detail gets ignored or summarized away. Is this a system prompt/model alignment issue or is there a way to structure longer context that actually forces the model to stick to the instructions? Curious how you guys approach this when you want specific non generic output

reddit.com
u/DangerousTomorrow782 — 3 days ago

Which one should I choose to pay a monthly fee? Gemini ChatGPT, Claude ?

The question is clear I guess but as of this date 16/8/2026 which sevice is better? It is very hard to decide I like Gemini and ChatGPT they both offer good services but I can only choose one, what is your recommendation? If there’s an option that’s not mentioned please tell.

reddit.com
u/NoLocal1168 — 4 days ago
▲ 6 r/AILounge+1 crossposts

How to stay educated on AI tools/innovations without using it?

This may seem like a silly question for this subreddit, but hear me out.

I'm an english and history student, and an artist. I'm VERY against the way that the large majority of people use generative ai to offload their schoolwork and creativity. I avoid using ai whenever I can because of that moral standpoint and due to the environmental damage it causes.

However, I am aware that ai is and is going to continue to be integrated as a tool in professional fields, and I should at least have some knowledge of how it works and how to utilize it efficiently. I don't really want to go messing around with it, however, as that seems wasteful -- I don't want to use it "just to practice". Are there reports/publications/guides that I could read, or places that stay updated with ai news/innovations? That way, I can learn about what is being developed and have an understanding without just aimlessly trying shit out.

reddit.com
u/Zealousideal-Win7772 — 4 days ago

What uncensored AI tools actually work for story writing?

Mainstream LLMs like ChatGPT hit a hard censor wall whenever you try to write intense fights, dark themes, or romance scenes.

For people writing fiction or roleplay, which platforms or uncensored models are actually delivering solid prose and good character memory right now?

reddit.com
u/NoLocal1168 — 5 days ago

Are cloud AI data centers hitting a ceiling? Local AI is starting to make way more sense.

Between massive electricity demands, rising API costs, and strict censorship, relying 100% on cloud LLMs is starting to feel unsustainable long-term. Local hardware and open-weights models have gotten good enough that running everything on-device is actually viable for a lot of workflows now. For those running local setups or small LLMs on your own rigs—what specs are you running, and are you completely off the cloud yet or still using a hybrid setup?

reddit.com
u/unnamedpanther155 — 4 days ago

Anyone using Cursor AI and barely writing any code? Anything better than Cursor AI ?

It feels like coding has shifted from writing syntax to just acting as an architect and approver. For smaller .NET/Blazor projects, letting Cursor handle the full context and just applying changes makes the process way faster.

Copilot feels outdated after this, though I still use web-based ChatGPT to brainstorm initial concepts before bringing them into the editor.

For those using AI-first editors daily, is anything currently outperforming Cursor on full-codebase context, or is it still in a tier of its own?

reddit.com
u/Zealousideal-Win7772 — 5 days ago
▲ 14 r/AILounge+2 crossposts

What’s the best AI for my use case?

I’m looking for some advice on which AI model/service would be the best fit for my specific use case.
I work at a cleaning company called Tenderly Today, where I’m mainly involved with things like marketing, website management, business analysis, creating content, researching ideas, improving processes, and generally using AI to help me run and grow the business.
I used ChatGPT for quite a while, but I’m currently using Claude. Some time ago, I remember seeing a lot of people recommending Claude and saying it was one of the best options available. However, more recently I’ve noticed a trend of people moving away from Claude or saying that other models have become better.
I’m trying to figure out whether I should stick with Claude, go back to ChatGPT, or consider something else entirely.
One important thing: I don’t really use coding/programming (or only very rarely), and coding isn’t a priority for my business. So I’m much more interested in things like reasoning, business analysis, research, writing, marketing, working with documents/data, brainstorming, and general productivity.
For someone with this type of use case, which AI would you recommend today, and why?
Would love to hear from people who have actually used ChatGPT, Claude, Gemini, Perplexity, or other alternatives for business/work purposes.

reddit.com
u/draqzoX — 6 days ago