Live data from Hacker News

Ask HN: What are some actual use cases of AI Agents right now?

news.ycombinator.com

21–30 of 154 posts

Re: Ask HN: What are some actual use cases of AI Agents right now?

#21

We're using AI agents for the orchestration of our fully automated web scrapers. But instead of trying to have one large general purpose agent that is hard to control and test, we use many smaller agents that basically just pick the right strategy for a specific sub-task in our workflows. In our case, an agent is a medium-sized LLM prompt that has a) context and b) a set of functions available to call. For example we…

Where/how do you host your finetuned small models? I have some use-cases, but that headache always leads me right back to OpenAI.

Re: Ask HN: What are some actual use cases of AI Agents right now?

#23

My RSS reader is an A.I. agent, I have written a huge number of comments mentioning it https://hn.algolia.com/?dateRange=all&page=0&prefix=false&qu...

That’s not exactly taking actions on your behalf though. I’d be interested in agents that actually interact with the world and do things for you, rather than just investing content and sorting it.

Re: Ask HN: What are some actual use cases of AI Agents right now?

#24
Which definition of agents are you interested in?

I'm pretty convinced at this point that the term "agents" is almost useless, because so many people are carrying entirely different mental models of what the term means - so it invites conversations where no-one is actually talking about the same exact idea.

Re: Ask HN: What are some actual use cases of AI Agents right now?

#25

I use Duet AI from Google in vscode. It is quite good at completing my code as I'm writing it. I almost exclusively write Python code. I am not promoting for a whole file or anything but it can often complete multiple lines at once

That’s just text completion though

Re: Ask HN: What are some actual use cases of AI Agents right now?

#26
I taught https://github.com/KillianLucas/open-interpreter how to use https://github.com/ferrislucas/promptr

Then I asked it to add a test suite to a rails side project. It created missing factories, corrected a broken test database configuration, and wrote tests for the classes and controllers that I asked it to.

I didn't have to get involved with mundane details. I did have to intervene here and there, but not much. The tests aren't the best in the world, but IMO they're adding value by at least covering the happy path. They're not as good as an experienced person would write.

I did spend a non-trivial amount of time fiddling with the prompts I used to teach OI about Promptr as well as the prompts I used to get it to successfully create the test suite.

The total cost was around $11 using GPT4 turbo.

I think in this case it was a fun experiment. I think in the future, this type of tooling will be ubiquitous.

Re: Ask HN: What are some actual use cases of AI Agents right now?

#27
The company I work for has tons of documentation and regulations for several areas. In some areas the documents are well over a thousand and for the ease of use of these documents we build RAG based chat bots. This is why I have been playing with RAG systems on the scale of "build completely from scratch" to "connect the services in Azure". The retrieval part of a RAG is vital for good/reliable answers and if you build it naive, the results are not overwhelming.

You can improve on the retrieved documents in many ways, like - by better chunking,

- better embedding,

- embedding several rephrased versions of the query,

- embedding a hypothetical answer to the prompt,

- hybrid retrieval (vector similarity + keyword/tfidf/bm25 related search),

- massively incorporating meta data,

- introducing additional (or hierarchical) summaries of the documents,

- returning not only the chunks but also adjacent text,

- re-ranking the candidate documents,

- fine tuning the LLM and much, much more.

However, at the end of the day a RAG system usually still has a hard time answering questions that require an overview of your data. Example questions are:

- "What are the key differences between the new and the old version of document X?"

- "Which documents can I ask you questions about?"

- "How do the regulations differ between case A and case B?"

In these cases it is really helpful to incorporate LLMs to decide how to process the prompt. This can be something simple like query-routing, or rephrasing/enhancing the original prompt until something useful comes up. But it can also be agents that come up with sub-queries and a plan on how to combine the partial answers. You can also build a network of agents with different roles (like coordinator/planner, reviewer, retriever, ...) to come up with an answer.

* edited the formatting

Re: Ask HN: What are some actual use cases of AI Agents right now?

#28
The fully autonomous agents that call tools work OK. I don't think any of them are ready for prime-time.

I've had success in building multi-agent workflows. Which in a sense are an ensemble of experts that have different prompts to help bounce and validate answers off each other. For example, with one LLM prompt you can ask a question and another can validate the answer. A bit of strength in numbers defense against hallucinations.

I wrote an example doing this in this article: https://medium.com/neuml/ai-powered-parenting-can-ai-help-yo...

Re: Ask HN: What are some actual use cases of AI Agents right now?

#29
A few personal uses:

1. Find, annotate, aggregate, organize, summarize, etc all of my knowledge from notes

2. A Google substitute with direct answers in place of SEO junktext and countless ads

3. Writing boilerplate code, especially in unfamiliar languages

4. Dynamic, general, richly nuanced multimodal content moderation without the human labor bill

5. As an extremely effective personal tutor for learning nearly anything

I view AI as commoditizing general intelligence. You can supply it, like turning on the tap, wherever intelligence helps. I inject intelligence into moderating Discord message harassment, to detect when my 3D prints fail, to filter fluff from articles, clean up unstructured data, flag inappropriate images, etc. (All with the same model!) The world is overwhelmingly starved of intelligence. What extremely limited supply we have of this scarce resource (via humans) is woefully insufficient, and often extreme overkill where deployed. I now have access to a pennies-on-the-dollar supply of (low/mediocre quality) intelligence. Bet that I'll use it anywhere possible to unlock personal value and free up my intelligence for use where it's actually needed.

Re: Ask HN: What are some actual use cases of AI Agents right now?

#30
post #10

Don't downplay the value of watching agents talk to each other for amusement. I got a lot of mileage out of that and will continue to do so.

If you haven't checked out my project, Cheevly, you should look into it. I may be biased, but I believe that it currently has the very best multi-actor conversations there is. It's free, but requires a bring-your-own GPT key.
Post reply on HN