• FriendOfDeSoto@startrek.website
    link
    fedilink
    English
    arrow-up
    65
    arrow-down
    2
    ·
    4 个月前

    I’m also getting my tax advice from Gonzo on LinkedIn.

    What a sad state of journalism. Celebrity posted something on social. Opinions are divided. Commenters said this. Others said that. Thanks for looking at our ads.

    She may be right, I dunno. I’m criticizing the publication and quality of the story, not the actor and alleged AI influencer.

  • rozodru@piefed.world
    link
    fedilink
    English
    arrow-up
    50
    arrow-down
    3
    ·
    4 个月前

    cool, cool…Hey Reese which LLM’s have you invested in that you’re now advocating more women utilize them? OpenAI? Anthropic?

    She’s not stupid. She’s trying to get a return on investment.

    • uenticx@lemmy.world
      link
      fedilink
      English
      arrow-up
      9
      arrow-down
      2
      ·
      edit-2
      3 个月前

      I seriously tried looking for a connection with her portfolio’s available online, she seems clean and genuinely just advocating woman to use it. That’s what it looks like right now, at least in public view. Don’t blame anyone in the slightest for the cynicism though in the current atmosphere.

      E: Welp, there goes my optimism.

    • jungle@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      3 个月前

      She doesn’t need to be invested in any particular LLM company. If she only bought a world ETF she’s already heavily invested in LLMs.

    • 14th_cylon@lemmy.zip
      link
      fedilink
      English
      arrow-up
      0
      arrow-down
      8
      ·
      3 个月前

      Even if your unfounded accusation was true, do you think her ROI would change depending on what she says to variety? She is not stupid. You? I have my doubts…

      • Amnesigenic@lemmy.ml
        link
        fedilink
        English
        arrow-up
        6
        arrow-down
        1
        ·
        3 个月前

        Yes actually, having a celebrity speak favorably about a company to boost sales and/or stock value is a thing, and owning stock in a company is an obvious incentive for a person to want to boost that stock’s value, fucking duh

        • 14th_cylon@lemmy.zip
          link
          fedilink
          English
          arrow-up
          1
          arrow-down
          6
          ·
          3 个月前

          Openai’s valuation is at 30B dollars and illiterate farmer at the end of the world knows what it is. If you think whatever RW tells pop culture magazine makes a dent in it, one way or the other, you need to recalibrate your tinfoil hat. Fucking duh.

          • Amnesigenic@lemmy.ml
            link
            fedilink
            English
            arrow-up
            6
            arrow-down
            1
            ·
            3 个月前

            Valuation based on fantastical quantities of bullshit, growing public awareness that bubble will pop sooner rather than later, extremely plausible that tech companies would enlist celebrities to help prop their scheme up as long as they can, cry about it

            • 14th_cylon@lemmy.zip
              link
              fedilink
              English
              arrow-up
              3
              arrow-down
              5
              ·
              3 个月前

              cry about it

              You are the one crying about it, i am laughing at you ;)

              Oh hey, i just found i am wasting my time talking to .ml asshole and genocide denier. Fuck off and bye.

            • 14th_cylon@lemmy.zip
              link
              fedilink
              English
              arrow-up
              2
              ·
              3 个月前

              my bad, thanks for the correction. she is even more unlikely to make a dent in that, though.

            • 14th_cylon@lemmy.zip
              link
              fedilink
              English
              arrow-up
              1
              ·
              3 个月前

              advertisers use celebrities that fit the size of their business. if your business is right now literally taking over the word and it is dependent on statements of presidents and top 10 billionaires in the world, then reese witherspoon does not really play in this league and chance she will make any noticable dent in its popularity or evaluation is astronomically low.

              have you noticed that celebrities also have opinions and sometimes share them for free? when a celebrity speaks for war, are you asking “how much have you invested in military industrial complex?” when they speak against war, are you asking “how much have you invested in red cross?” when celebrity speaks about education, are you asking “have you recently invested in any private schools?”

              not everything in the world is conspiracy.

      • Dozzi92@lemmy.world
        link
        fedilink
        English
        arrow-up
        9
        ·
        3 个月前

        I haven’t used an LLM, but it’s probably similar to how people could not Google for shit. I always considered myself something of an expert at using search engines, although they’ve gone to shit obviously, and with the advent of AI it seems like they will fade out.

      • zbyte64@awful.systems
        link
        fedilink
        English
        arrow-up
        8
        ·
        3 个月前

        “Properly prompting” is to not prompt. A chat interface is the lowest fidelity interface to use with an LLM.

          • zbyte64@awful.systems
            link
            fedilink
            English
            arrow-up
            2
            ·
            3 个月前

            Examples to consider:

            A code base with TODOs embedded will make fewer mistakes and spend less tokens than if you attempt to direct the LLM only with prompting.

            A file system gives an LLM more context than a flat file (or large prompt) with the same contents because a file system has a tree like structure and makes it less likely the LLM will ingest context it doesn’t need and confuse it

            Lastly consider the efficacy of providing it tools vs using agent skills which is another form of prompting. Giving an LLM a deterministic feedback loop beats tweaking your prompts every time

            • el_abuelo@programming.dev
              link
              fedilink
              English
              arrow-up
              3
              ·
              3 个月前

              Ok so i think i do all of these things and would just describe them as “other ways to prompt and LLM” - i think the nuance youre shooting for here is that using these methods you are “pre-preparing” the prompt - not thinking about it at prompt-time and thus likely to miss stuff.

              e.g. Feeding a TODO is just the same as copy-pasting that todo in as a prompt.

              Have I understood you correctly?

              • zbyte64@awful.systems
                link
                fedilink
                English
                arrow-up
                2
                ·
                3 个月前

                No, it’s not the same as copying and pasting the TODO into a prompt. Embedding the TODO in code instead of the prompt reduces tokens burned and increases accuracy because it’s observing the TODO in context. Sure you can write more prompting to provide that context, but it still won’t be as accurate. The less context you provide via prompting and instead provide more context through automatic deterministc feedback the better the results

                • el_abuelo@programming.dev
                  link
                  fedilink
                  English
                  arrow-up
                  2
                  ·
                  3 个月前

                  Okay so now I think you’re describing the behaviour I take for granted with the harness i.e. Claude Code.

                  Having good repo readiness through a good agents/claude.md file + tests + docs means the LLM is able to read more files into its context.

                  It never occurred to me that anyone would prompt in isolation of their repos but I guess thats exactly what it was like for me last year when I was just feeding ChatGPT prompts away from the repo.

        • village604@adultswim.fan
          link
          fedilink
          English
          arrow-up
          2
          ·
          3 个月前

          That’s almost correct, actually. One of the best things to do is to prompt it to ask you clarifying questions.

    • Riskable@programming.dev
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      14
      ·
      3 个月前

      Ever see someone using Google and cringe? People who have experience getting AI to do what they want feel the same when they see normies writing their prompts.

  • Cherry@piefed.social
    link
    fedilink
    English
    arrow-up
    10
    arrow-down
    1
    ·
    edit-2
    4 个月前

    Attack the problem not one another.

    I understand advocating for women but this is a worker VRs the rich problem. Not a woman, bend so you can get a job problem.

  • Skyrmir@lemmy.world
    link
    fedilink
    English
    arrow-up
    8
    arrow-down
    1
    ·
    4 个月前

    Women tend to dominate care positions, nursing, teaching, and child care. None of them are going to be touched by AI, other than massive head aches caused in teaching kids to lazy to learn. Outside of those, women are in no different position than men when facing automation.