LLM-Advisor: An LLM Benchmark for Cost-efficient Path Planning across Multiple Terrains

The paper introduces LLM-Advisor, a prompt-based framework that leverages large language models as non-decisive post-processing advisors to significantly improve the cost efficiency of path planning across diverse terrains without modifying underlying planners, while addressing hallucination risks and demonstrating superior performance over zero-shot LLM approaches.

Ling Xiao, Toshihiko Yamasaki

Published Wed, 11 Ma
📖 4 min read☕ Coffee break read

Imagine you are sending a delivery drone to drop off a package. You have a map, a starting point, and a destination. The drone's computer (the "planner") needs to figure out the best route.

Usually, the computer just looks for the shortest distance, like a crow flying in a straight line. But in the real world, the ground isn't flat. Some parts are smooth pavement (easy to fly over), some are thick mud (hard to fly over), and some are swamps (impossible to fly over).

If the drone flies over the mud, it uses way more battery. If it flies over the pavement, it saves energy. The goal isn't just to be fast; it's to be cost-efficient (saving battery).

The Problem: The "Smart" Computer vs. The "Smart" Advisor

The paper introduces a new way to solve this using Large Language Models (LLMs)—the same AI technology that powers chatbots like me.

  1. The Old Way (The Robot's Brain): Traditional path-planning algorithms (like A* or RRT*) are like a robot with a very strict, local view. They look at the map grid by grid. They are great at avoiding walls, but they often miss the "big picture." They might take a slightly longer route that avoids a muddy patch, but they might also take a "short" route that accidentally cuts through a swamp because they are too focused on the immediate next step.
  2. The New Problem: Researchers tried asking the AI chatbot to just "draw the best path" from scratch. It failed miserably. The AI got confused, hallucinated (made up paths that went through walls), or gave bad advice. It's like asking a brilliant philosopher to do a math problem; they understand the concepts but can't do the precise calculations.

The Solution: LLM-Advisor (The "Second Opinion")

Instead of replacing the robot's brain, the authors created LLM-Advisor. Think of it as a wise, experienced navigator sitting next to the robot.

Here is how it works:

  1. The Robot does the heavy lifting: The robot's standard algorithm (A*) draws a path first. It's a valid path, but maybe not the best one.
  2. The Advisor reviews the work: The LLM-Advisor looks at the robot's path and the map. It says, "Hey, I see you took a shortcut through that rocky area. That costs a lot of energy. If you took this slightly longer detour around the rocks, you'd save 20% of your battery."
  3. The Robot decides: The robot doesn't blindly obey. It checks the suggestion. If the suggestion makes sense and saves energy, it takes it. If the suggestion is nonsense, it ignores it.

How They Fixed the AI's "Hallucinations"

AI chatbots are known for "hallucinating"—making things up confidently. If you ask an AI to draw a path, it might draw a line that goes through a mountain because it doesn't "see" the mountain the way a robot does.

To stop this, the authors used two clever tricks:

  • The "Describe, Don't Just List" Trick: Instead of asking the AI to spit out a list of coordinates (which is where it gets confused), they asked it to describe the path in words first ("Go from the start, turn left around the big rock, then head straight to the goal"). This forces the AI to think logically about the steps before giving numbers.
  • The "Show Me an Example" Trick (RAG): They showed the AI examples of good paths from similar situations before asking it for advice. It's like showing a student a solved math problem before asking them to solve a new one. This keeps the AI grounded in reality.

The Results

The team tested this on two new datasets (one made of computer-generated maps, one from real outdoor photos).

  • The AI alone? Terrible at planning paths on its own.
  • The Robot alone? Good, but often misses energy-saving shortcuts.
  • Robot + LLM-Advisor? Excellent.
    • For paths made by the standard robot algorithm, the Advisor improved the energy efficiency in 72% of cases.
    • It worked even in "hard" scenarios with complex, winding terrain.
    • It rarely gave bad advice because of the safety checks (hallucination mitigation).

The Big Takeaway

This paper proves that you don't need to replace your robot's brain with a giant AI. Instead, you can use AI as a smart consultant. The robot handles the precise math and safety, while the AI provides the "big picture" wisdom to save energy and time. It's the best of both worlds: the precision of a calculator and the intuition of a human expert.