r/womenin_AI

▲ 1 r/womenin_AI+2 crossposts

Made an "opensource fashion" app

Made an app where you can design, try, clone clothes and get it made by a vetted tailor. Im pretty stoked about it. It only took me a year..

madeapt.com
u/Puzzleheaded_Dig2410 — 4 days ago

Running an AI workshop in Sydney — helping non-tech founders get their first automation running

I'm running a workshop in Sydney (Stone & Chalk, Haymarket) for people who aren't technical — founders, operators, anyone who wants to get their first AI agent or automation up and running without needing to code.

Getting that first agent set up and finding the right foundation can be a real challenge for non-technical people, and I want to make it approachable.

If anyone's done something similar or has tips on making AI accessible to a non-tech audience, I'd love to hear them!

reddit.com
u/the-tiny-prince — 4 days ago
▲ 3 r/womenin_AI+1 crossposts

Looking for iOS feedback on my AI learning app

I’m building Iro AI, an iOS app for learning practical AI skills in short daily lessons.

It’s basically Duolingo-style reps for things like prompt engineering, ChatGPT, Claude, AI tools, automation, agents, and job hunting.

I’m looking for feedback from iOS people on the onboarding, lesson flow, and whether the app feels clear enough in the first minute.

App Store: https://apps.apple.com/us/app/iro-ai-learn-ai-skills/id6759628066

Happy to test anyone else’s app too if you’re looking for feedback.

u/Kiro_ai — 4 days ago

Show off Saturday

Share with the community what cool tools or vibe coded projects did you create this week using AI?

Time to show off your cool projects and get some ideas on what others are doing in the space!

reddit.com
u/AutoModerator — 7 days ago

LLM Part 1 - What is it and why does it seem so stupid AND smart?

Taking a stab at writing up the basics of LLM / GPT / Claude / Gemini to see if we can bridge the knowledge gap.

Concepts covered: LLM, tokens, context window

What is an LLM?

Actually, before answering that...let me explain this first. ChatGPT, Claude, and Gemini are all the same kind of thing: an app built on top of an LLM. The LLM is the model doing the actual work, and the model has a name like GPT-5.5, Claude Opus 4.7, or Gemini 3. So if someone asks "which model are you using?", you would be responding with "Opus 4.7," not "Claude." Claude is the app; Opus 4.7 is the LLM inside it. I'll mostly just say "the model" below.

To further elaborate: it’s an autocomplete trained on a bonkers amount of text. It doesn’t know things. It predicts the next chunk of text given what came before. Everything downstream (chat, agents, RAG, reasoning, your company’s shiny AI strategy deck) is built on top of that one move. You don't need to know what those all mean (yet).

The model is not answering your question. It is continuing your text. It’s just that the most likely continuation of a question is usually an answer. That is the whole trick.

But why does it feel like it knows things?

AI is just really good at pattern matching.

Case in point...finish this sentence: “I am not afraid of storms, for I am learning how to sail my ______.” You probably said ship. Not necessarily because you’ve read Little Women, but the pattern is overwhelming. Maybe you said boat. Fine. What matters is that you definitely didn’t say biscuits.

Now imagine you’ve read everything. Every book, every reddit post, every tweet, every recipe blog with paragraphs about the blogger’s grandma you don’t really care to know about. That’s what the model is trained on. It has a really, really, really ridiculously good sense of which words live near which other words in which contexts. Like ships and boats but not biscuits.

This is also why it sounds sure of itself when it’s wrong. It’s optimizing for plausibility, not truth. A made-up research paper looks exactly like a real one, sentence by sentence. The model can’t tell the difference. Neither can you, until you check.

I've been using GPT / Gemini / Claude to draft emails or have a chat. Some days, it's reading my mind. Other days it's an idiot.

So there are a few things happening under the hood that might be causing this. I'll go over three so that you can actually start to steer it.

1. Getting something saltless, generic, beige?

  • What's happening? Remember how it doesn't know things? Yeah, LLM isn't answering you. It's continuing your text (again, fancy autocomplete). So it looks at what you wrote and predicts what plausibly comes next.
  • To fix: don't ask but tee up the situation. Instead of instructing it to "write a follow up email" or "say no to attending the family reunion next weekend", paste the original thread, say who you want to respond to, and give it more context. The more real thing it has to continue them from, the less it falls back on tepid, average responses.

2. "How did you already forget what I told you? Aren't you listening?"

  • What's happening? The model can only "see" a limited amount of text at once. It's got memory but has a hard cliff. As a conversation grows, the oldest stuff just falls off and poofs away.
  • Two concepts to go over that are relevant here. (1) Tokens: the LLM doesn't see words. First it chops text into chunks called tokens (it's sometimes a whole word, sometimes a snippet, sometimes a single character). Then it converts those tokens into numbers (called embeddings). Under the hood it's all math, not language. When we say it "predicts the next chunk," it's really doing that prediction on the numbers. This matters here because the context window is measured in tokens. (2) Context window: How much the model can hold in tokens. Memory with a giant ass cliff. Bigger window = more expensive to run.
  • To fix: treat long chats as disposable. If something matters, you might need to restate it as the thread continues. When the quality drops deep into a long convo, that's probs because your early context aged out. You can ask it to summarize the conversation so far and start a fresh chat. Also put the most important instruction at the top or bottom because...
  • ...Similar to us, stuff at the beginning and the end is more memorable than the middle bits for the model, too.

3. Flat out wrong

  • What's happening? Again, it's the fancy autocomplete doing autocomplete thangs. It's designed to optimize for what sounds plausible, not what's true. A made-up stat and a real one probably looks pretty similar word by word...the model doesn't know.
  • To fix: use it as a writer, not a primary source. It's good at phrasing, structuring, summarizing, drafting, thinking out loud. If you need to fact check something, verify it yourself. Not because it's usually wrong but when it is wrong, it'll give you zero signal.

Does this help? + Where this can go next

So I wanted to cover the absolute basics by starting out with a common complaint for someone starting out (chats feeling inconsistent) to cover what LLM actually is, idea of a token and context window.

If this is helpful, I can continue in a similar format and cover progressively more in-depth topics. As an example...

Next: how to stop re-typing the same context every time you ask something (concepts covered: prompt, prompt engineering, projects, custom GPT, Claude skills)

reddit.com
u/ChloeAroundTheCorner — 6 days ago

What's your comfort level with AI / LLM?

See title. I'm building something to make AI agents more consistent and reliable, but people's understanding varies wildly from "I've used GPT" to "I'm building an agent army in n8n." Curious where y'all are at.

And if you fall more within the former category, would a writeup bringing you up to speed on LLM basics (MCP, context window, agents, prompt injection, etc.) be helpful? I've been writing a (pretty long) essay on it and trying to figure out if there's an audience before I share it.

Edit: thanks for all your responses. I got the answer I was looking for. Confirming it's wildly varied. 😂 and I think I will go ahead and write up a longer piece that explains the basics. Thank you all.

reddit.com
u/ChloeAroundTheCorner — 10 days ago
▲ 23 r/womenin_AI+5 crossposts

Ladieeeeees! I need your honest thoughts on a new product.

We built an automated code review for every PR. Our AI agent, Scout, checks against your defined standards, not generic rules. We also don't retain any of your data b/c that's how these things should be. It's free for 10 PRs/month. $15 for 100 PRs/month.

https://www.surmado.com/review/

Would love to get your thoughts/questions/insults (this is reddit of course)!

u/surmado_rachel — 11 days ago

Should I use those ai generated pic to market myself? Does it look like it's me lol?

Last 2 pic is me no ai

u/nobsmentor — 11 days ago
▲ 10 r/womenin_AI+1 crossposts

hii everyone, built this over the weekend. it's an interactive bookshelf where you can customize and add some objects(candle, matcha bowl, flower etc) to the shelf, plus add books you've read or want to read with notes on them.

honestly, i know it's not a big project with 5-figure mrr or anything, it's just a cute little side project for me to start building cool stuff and learn through that. right now i'm trying to figure out where to buy a custom domain, how to set it up, and move my project to it.

right now i have 40 users, some of them are my friends, classmates, and my sister, and some of them are from reddit. i'd love to get feedback on it. if you try it, it means a lot, let me know if you liked it or not.

here's the link if you wants to try it: mybookshelf

u/Nervous-Role-5227 — 9 days ago

Most startup ideas aren’t unique — I built a tool to test that

I kept seeing founders spend months building ideas… only to later realize the market was already crowded.

Not necessarily with direct clones.

But with:

  • adjacent products
  • niche competitors
  • partial solutions
  • existing workflows solving the same problem differently

So I started building a tool called MarketScope to explore this problem.

You basically enter a startup idea, and it analyzes:

  • existing competitors
  • market saturation
  • gaps/opportunities
  • underserved segments
  • pricing patterns
  • risks/red flags

What surprised me most while testing it-

A lot of ideas that sound unique initially… turn out to already exist in fragmented ways.

But at the same time, many “crowded” markets still have underserved gaps:

  • localization
  • accessibility
  • affordability
  • onboarding simplicity
  • niche workflows

So the problem usually isn’t: “Is this idea unique?”

It’s more like “Where is the actual unmet need?”

Been using it myself to analyze random startup ideas recently and the patterns are pretty interesting.

Still improving the reports/UI, but curious what people think about this kind of market research tool in general.

Would this actually help you before building something?

reddit.com
u/Strangewhisper — 9 days ago

AI Meetup, Done Properly

Hi everyone! I’m putting together a new AI meetup series and I want to do some research on what would people actually want to attend.

There are already plenty of AI events that feel repetitive, too corporate, or disconnected from what founders, operators, and technical teams are actually dealing with day to day. I’d rather create something more grounded in real conversations, real product decisions, and the messy reality of building.

The meetup is meant for founders, engineers, product leaders, designers, and people actively thinking about how AI is changing the way companies operate, build products, and make decisions.

I already have a few ideas around topics and formats, but honestly I'm more interested in hearing what people would genuinely find useful, interesting, or worth leaving the house for.

Curious what kinds of conversations you think are missing from most AI events right now - and what would actually make one feel valuable.

reddit.com
u/oanat95 — 12 days ago