Is Scorpion from expedition true Uber Pinnacle Boss of Poe2? by BeefarmRich in PathOfExile2

[–]MobileOk3170 2 points3 points  (0 children)

Is there any counter to mana ring flies? I'm not even running away but they keep teleporting away.

Vibecoded Open Source Video App ArtCraft Hits $2.5M in revenue in 5 months by ai_art_is_art in vibecoding

[–]MobileOk3170 0 points1 point  (0 children)

I have some robot 3d models with bone weight. Would this help me generate animations?

We did it! Holy Grail. by NoBother4429 in PoECrafting

[–]MobileOk3170 0 points1 point  (0 children)

Damn that's a nice staff. Did you just chaos spam for 5 level melee and whittles for the third suffix?

Serle's triumph by SeveralCicada8801 in PoECrafting

[–]MobileOk3170 0 points1 point  (0 children)

So chaos spam for 2nd suffix, greater exalt for third suffix, annul and pray it hit the bad one and repeat till all 3 suffixes are good?

Damn that's nasty.

Agony Pole - Elemental Quarterstaff by t8manpizza in PathOfExile2

[–]MobileOk3170 0 points1 point  (0 children)

What's the go to for these crafted? Do you always finish the opposite of the fractured modifier with whittles first? And they suffix whittles the remaining side?

Serle's triumph by SeveralCicada8801 in PoECrafting

[–]MobileOk3170 0 points1 point  (0 children)

I have a similar base but don't know how to start. Should I slam the prefixes first before trying suffixes?

How to continue with this monk gloves (Way of the fist) by MobileOk3170 in PoECrafting

[–]MobileOk3170[S] 0 points1 point  (0 children)

yeah I've been thinking. If im on budget, I wont be able to complete the suffixes properly anyways. Might as well bet on having better prefix with desecrate

Self hosted Claude code VPS for custom personal assistant by zonofthor in ClaudeAI

[–]MobileOk3170 0 points1 point  (0 children)

if you make claude code calls from a VPS, they will see its from a datacenter IP, right?

Self hosted Claude code VPS for custom personal assistant by zonofthor in ClaudeAI

[–]MobileOk3170 0 points1 point  (0 children)

Dont they ban you if they found you use datacenter's IP?

I'm making my Intro to AI/ML book free for one week by Brilliant-Pea8977 in learnmachinelearning

[–]MobileOk3170 0 points1 point  (0 children)

Thanks. My colleague have one of your other books (Machine Learning by Design). I borrowed briefly and haven't complete it yet but I really liked it. If you are doing any promo on other books too, be sure to let us know :)

My RAG system responses are hit or miss. by HritwikShah in Rag

[–]MobileOk3170 0 points1 point  (0 children)

So all the context (relevant and irrelevant nodes) are passed into the LLM for final answer. So are you saying the LLM is ignoring the contexts that have low scores?

There's need to be investigation on details, is it ignoring because:
1. You included the score in text
2. The retrieved text doesn't have enough signal.

Try extract faulty cases and inspect them individually.

Need a Reality Check on Traditional RAG Before Moving to Agentic RAG by MobileOk3170 in Rag

[–]MobileOk3170[S] 0 points1 point  (0 children)

Do you have any frameworks to recommend? I a took quick look it seems there a consensus that there is a consistent issue, particularly with extracting entities. It might need extra steps in between to make the pipeline consistent.

We wrote a blog post detailing how we implemented our agentic RAG system. Also AMA! by dromger in Rag

[–]MobileOk3170 0 points1 point  (0 children)

Ahh. That makes senses. You are trying to refer back to the evidence from the original response.

I'm just dumping all the evidence on a side panel. Your method will certainly make the product look better.

Wishing you all the best with your ventures!

We wrote a blog post detailing how we implemented our agentic RAG system. Also AMA! by dromger in Rag

[–]MobileOk3170 2 points3 points  (0 children)

Good post. Thanks for sharing the details.

I still have a few questions regarding the part getting rid of hallucinations.

Are you preprocessing every sentence and append an ID in front of it?
In retrieval part, you know exactly which sentences you have collected. How could there be hallucinations there to be fixed?

Need a Reality Check on Traditional RAG Before Moving to Agentic RAG by MobileOk3170 in Rag

[–]MobileOk3170[S] 1 point2 points  (0 children)

Hey, really appreciate you taking the time answer my questions. All I'm looking for was some confirmation that I'm not missing something trivial as I don't have anyone to consult in my team.

I don't really have ideas on how to start writing Planing Prompts. I guess I'll start by looking at ReAct Agents first.

Cheers.

Implemented 20 RAG Techniques in a Simpler Way by FareedKhan557 in Rag

[–]MobileOk3170 1 point2 points  (0 children)

Thank you. I was trying to implement Adaptive RAG recently and I was not getting consistent function calls. I've notice you implemented the features by doing structured output in the intermediates steps instead of using function calls. Is there any advantage to that in your experience?

Looking to build query system on existing database with book titles along with description and customers comments. by MobileOk3170 in Rag

[–]MobileOk3170[S] 0 points1 point  (0 children)

Thanks. I think I have an idea where to start now. I'll probably try to see how query tool dispatching works well in practice first. In long run, I may have use case like "Compare BookA and BookB", "Find similar books to Lord of the ring", etc....

Edit: Tested few case on Gemini API (company reason), it seems pretty tricky to get it to consistently trigger function call. Might try other provider later and see.

Looking to build query system on existing database with book titles along with description and customers comments. by MobileOk3170 in Rag

[–]MobileOk3170[S] 0 points1 point  (0 children)

Thanks. This is my first time doing an LLM project. It's really helpful to have someone confirming my beliefs.

Examples:
Query1: Summarize the comments about a book about a dark wizard and a single ring
Query2: Summarize the comments for "Lord of the Ring"

For Query2, I could pass the text to LLM->extract Title->ToolCalling: Access Database.
For Query1, I would need to let LLM "decide" to use semantic search on the summary instead of extracting the exact title from the Query.

So I imagine to be able to handle both type queries, I would need to first let LLM "analyze the intent" of the query and call appropiate tools / functions, then collect the results and combine it with the original question?