• @MotoAsh@lemmy.world
    link
    fedilink
    344 months ago

    Genuinely, fuzzy search and autocomplete is a great application of “AI” (machine learning algorithms).

    They just need to stop branding it as AI and selling everything they feed the models…

    • @thegreekgeek@midwest.social
      link
      fedilink
      English
      44 months ago

      Hopefully that day is soon what with those 1-bit models I’ve been hearing about. I’d be all for that, but I’ll be damned if I’ll be putting an OpenAI key into my terminal lol.

    • oce 🐆
      link
      34 months ago

      Do those really require ML? For an e-commerce with millions of entries maybe, but for a CLI I don’t see it.

      • @MotoAsh@lemmy.world
        link
        fedilink
        64 months ago

        “need”? Of course not. Though I do see it being capable of much more sophisticated autocomplete. Like a tab-complete that is aware of what you’ve already typed in the command and gives you only compatible remaining flags, or could tab-complete information available in the environment, like recognize it’s running in Kubernetes and let you tab through running hosts or commands that’d make sense from ‘here’, etc, etc.

        Sure, it’s all things a very nice and complicated algorithm could do, but … that’s all “AI” thus far. There have been zero actual artificial intelligences created.

      • @jj4211@lemmy.world
        link
        fedilink
        34 months ago

        So I didn’t do it in the CLI direct, but I had a whole lot of files in a collection that obviously had duplicates.

        So I first used fdupes, which got a lot of them. But there were a lot of duplicates still. I noted a bunch were identifiable by having identical file size, but just some different metadata, so I made a quick work of presenting only files with identical stuff and went about reviewing and deleting.

        Then I still see a lot of duplicates, because the metadata might be slightly different. Sizes were close, but non dupes also were close. I might have proceeded to write a little something to strip it the metadata to normalize, but decided to feed it to an LLM and ask to identify likely duplicates. It failed to find them all, and erroneously declared duplicates, but it did make the work go faster. Of course in this scenario a missed duplicate isn’t a huge deal, so I had to double check their results and might have missed some things, but good enough for the effort.

        Sometimes my recall isn’t quite good enough for ctrl-r, but maybe an LLM could do better. Of course a better “search engine” also could do well. Also a mind numbingly obvious snippet could be generated without the tedium. Again, having to be careful to reviee because the LLMs are useful, but unreliable.

      • @MotoAsh@lemmy.world
        link
        fedilink
        2
        edit-2
        4 months ago

        Not sure what you mean. It’s already a completely superfluous and additional feature. It “should” execute completely separate of everything regardless of what integrations it has.

        Though if it doesn’t yet exist as a separate thing to hook in to (and it doesn’t), it’s got to execute somewhere. Makes sense it’d show up as a canned extension or addition to something before it’d show up as a perfectly logically integrated tool.

        • @smileyhead@discuss.tchncs.de
          link
          fedilink
          24 months ago

          Terminal emulator is the window, the tabs, integration with your desktop, etc.
          Shell is more complicated but TLDR is this is everything showing in your terminal window by default, the base program you use that runs other programs. The prompt showing current user, saving history, coloring the input, basic editing keyboard shortcuts, etc.

          By having this AI integrations in a terminal emulator we are very much limiting ourselfs. It would look more fancy in popup windows, but it won’t work over remote connections and not be as portable.
          Usually when we do some smart functions like autocomplete, fuzzy search or integrations like that we do it as an shell (fish, bash, zsh) extension, then it will work on any emulator and even without a GUI.

          • @MotoAsh@lemmy.world
            link
            fedilink
            2
            edit-2
            4 months ago

            Yea, I agree it ‘should’ be integrated in a more general way. Though my point is from the dev’s perspective: Why go through the extra effort to ‘properly’ do it if it is an unproven tool many people don’t want?

            Not saying it should stay there, just saying it makes sense it showed up somewhere less sensical than the ideal implementation.